The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. Node.js App Template using Cloud Code and Web Hosting
Public

123
95
123
95
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Messages

This GraphQL query fetches All Messages


0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allMessages {
      messages (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          file {
            url
            name
          }
          id
          updatedAt
        }
      }
    }
{
  "data": {
    "messages": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2019-08-21T15:38:58.877Z",
          "file": null,
          "id": "AfNTHZ0gBu",
          "updatedAt": "2019-08-21T15:41:20.494Z"
        }
      ]
    }
  }
}