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

  1. Back4App
  2. Complete User Registration
Public

33
53
33
53
  • 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": "2019-11-21T14:16:19.875Z",
          "createdWith": {
            "action": "signup",
            "authProvider": "password"
          },
          "expiresAt": "2020-11-20T14:16:19.874Z",
          "id": "hAWHWoX1cM",
          "installationId": "8366611d-1bf9-1084-65dd-2984c2964024",
          "restricted": false,
          "sessionToken": "r:726e80f817e15aec8b1a6aa1d96c3f2e",
          "updatedAt": "2019-11-21T14:16:19.875Z",
          "user": {
            "id": "TF66qigVpu"
          }
        }
      ]
    }
  }
}