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

  1. SIMPLEAPP
  2. StreamFy | Live streaming tv for Android
Public

14
17
14
17
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All MessageItems

This GraphQL query fetches All MessageItems


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allMessageItems {
      messageItems (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          id
          text
          tv {
            id
          }
          updatedAt
          user {
            id
          }
        }
      }
    }
{
  "data": {
    "messageItems": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2019-12-03T23:17:35.756Z",
          "id": "niefo7LLMb",
          "text": "test",
          "tv": {
            "id": "jvQowe9mfE"
          },
          "updatedAt": "2019-12-03T23:17:35.756Z",
          "user": {
            "id": "c9nA7Kr0JQ"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-11-25T12:31:15.369Z",
          "id": "7GlnEZHN3b",
          "text": "one",
          "tv": {
            "id": "Ju5btll0BJ"
          },
          "updatedAt": "2019-11-25T12:31:15.369Z",
          "user": {
            "id": "c9nA7Kr0JQ"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-11-23T19:15:33.140Z",
          "id": "2igTOxmyXu",
          "text": "hi",
          "tv": {
            "id": "dKXZB7flDg"
          },
          "updatedAt": "2019-11-23T19:15:33.140Z",
          "user": {
            "id": "B0CzHbqfs0"
          }
        }
      ]
    }
  }
}