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

  1. CubyCode
  2. Radioo | Radio station app template for Android/iOS
Public

12
20
12
20
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Sessions

This GraphQL query fetches All Sessions


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allSessions {
      sessions (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          createdWith
          expiresAt
          id
          installationId
          restricted
          sessionToken
          updatedAt
          user {
            id
          }
        }
      }
    }
{
  "data": {
    "sessions": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2016-09-08T07:24:42.479Z",
          "createdWith": {
            "action": "signup",
            "authProvider": "password"
          },
          "expiresAt": "2017-09-08T07:24:42.479Z",
          "id": "rSfdxZU1BB",
          "installationId": "b9cfe40e-c2de-4bbb-aa04-9e52a8c484bb",
          "restricted": false,
          "sessionToken": "r:dfd2b3e0d27c8c2fdd4be6bc57ff7e92",
          "updatedAt": "2016-09-08T07:24:42.479Z",
          "user": null
        },
        {
          "ACL": null,
          "createdAt": "2017-11-05T16:18:38.081Z",
          "createdWith": {
            "action": "signup",
            "authProvider": "password"
          },
          "expiresAt": "2018-11-05T16:18:38.081Z",
          "id": "hJSON31QU9",
          "installationId": "351eb40f-b820-4037-8b21-fbf8fe559ea7",
          "restricted": false,
          "sessionToken": "r:c2f73ce4f49012d05b87cea3c51353a0",
          "updatedAt": "2017-11-05T16:18:38.081Z",
          "user": null
        },
        {
          "ACL": null,
          "createdAt": "2017-07-13T01:07:19.232Z",
          "createdWith": {
            "action": "signup",
            "authProvider": "password"
          },
          "expiresAt": "2018-07-13T01:07:19.232Z",
          "id": "66PwqVBEmR",
          "installationId": "25d13430-ec68-441e-8280-4dd63bdf2c58",
          "restricted": false,
          "sessionToken": "r:e51b34e8f4817b900709257a566bcd55",
          "updatedAt": "2017-07-13T01:07:19.232Z",
          "user": null
        }
      ]
    }
  }
}