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

  1. OMG Lancer
  2. Aplicativo de consulta médica e farmácia (Android) | Médico e paciente Ambos os aplicativos
Public

11
13
11
13
  • 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-20T10:19:31.279Z",
          "createdWith": {
            "action": "login",
            "authProvider": "password"
          },
          "expiresAt": "2020-11-19T10:19:31.279Z",
          "id": "u2kLMxaHIz",
          "installationId": "3d49b983-e0d2-4042-9a5e-60e6384291e2",
          "restricted": false,
          "sessionToken": "r:ac08378bb3a993e9e41e8a8822d9b2e4",
          "updatedAt": "2019-11-20T10:19:31.279Z",
          "user": {
            "id": "zstjlEHxHb"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-11-23T19:14:57.460Z",
          "createdWith": {
            "action": "login",
            "authProvider": "password"
          },
          "expiresAt": "2020-11-22T19:14:57.459Z",
          "id": "xqFllDiRo8",
          "installationId": "1f295a23-35d7-4179-a951-974a3159a8e4",
          "restricted": false,
          "sessionToken": "r:e4e3752fb1a1f942ad3528ab3c57eb4e",
          "updatedAt": "2019-11-23T19:14:57.460Z",
          "user": {
            "id": "pqONNY4HkY"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-11-21T11:02:31.146Z",
          "createdWith": {
            "action": "login",
            "authProvider": "password"
          },
          "expiresAt": "2020-11-20T11:02:31.146Z",
          "id": "SZA5kVVA6J",
          "installationId": "41a6b10a-b0a2-4990-91ea-8f26655c9ed1",
          "restricted": false,
          "sessionToken": "r:0bb32254d78d420ac959b24dfecdf02e",
          "updatedAt": "2019-11-21T11:02:31.146Z",
          "user": {
            "id": "pqONNY4HkY"
          }
        }
      ]
    }
  }
}