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

  1. CubyCode
  2. Albums | Photo Albums Sharing App Template for Android/iOS
Public

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

All Follows

This GraphQL query fetches All Follows


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allFollows {
      follows (skip: 0, limit: 3) {
        results {
          ACL
          aUser {
            id
          }
          createdAt
          id
          isFollowing {
            id
          }
          updatedAt
        }
      }
    }
{
  "data": {
    "follows": {
      "results": [
        {
          "ACL": null,
          "aUser": {
            "id": "N40o9uR3Jw"
          },
          "createdAt": "2019-01-23T16:43:30.284Z",
          "id": "T5gmGHczn1",
          "isFollowing": {
            "id": "klvwLzbZHC"
          },
          "updatedAt": "2019-01-23T16:43:30.284Z"
        },
        {
          "ACL": null,
          "aUser": {
            "id": "FtjSiy5UBI"
          },
          "createdAt": "2019-08-19T23:49:00.207Z",
          "id": "98LGn5xA8K",
          "isFollowing": {
            "id": "klvwLzbZHC"
          },
          "updatedAt": "2019-08-19T23:49:00.207Z"
        },
        {
          "ACL": null,
          "aUser": {
            "id": "N40o9uR3Jw"
          },
          "createdAt": "2019-01-23T16:41:35.194Z",
          "id": "r4SFd0csL5",
          "isFollowing": {
            "id": "ijMVVakiTW"
          },
          "updatedAt": "2019-01-23T16:41:35.194Z"
        }
      ]
    }
  }
}