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

  1. SIMPLEAPP
  2. Streamfy - Aplicativo de TV ao Vivo para Android
Public

10
10
10
10
  • 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-11-23T19:15:33.140Z",
          "id": "2igTOxmyXu",
          "text": "hi",
          "tv": {
            "id": "dKXZB7flDg"
          },
          "updatedAt": "2019-11-23T19:15:33.140Z",
          "user": {
            "id": "B0CzHbqfs0"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-12-03T23:17:44.818Z",
          "id": "G2Q7PXhTAw",
          "text": "test 1",
          "tv": {
            "id": "jvQowe9mfE"
          },
          "updatedAt": "2019-12-03T23:17:44.818Z",
          "user": {
            "id": "c9nA7Kr0JQ"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-11-25T12:30:59.196Z",
          "id": "KhunkoIWzU",
          "text": "wow!!!",
          "tv": {
            "id": "Ju5btll0BJ"
          },
          "updatedAt": "2019-11-25T12:30:59.196Z",
          "user": {
            "id": "c9nA7Kr0JQ"
          }
        }
      ]
    }
  }
}