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

  1. CubyCode
  2. MyStream | A social network app template
Public

37
49
37
49
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Galleries

This GraphQL query fetches All Galleries


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query allGalleries {
      galleries (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          id
          image {
            url
            name
          }
          title
          updatedAt
        }
      }
    }
{
  "data": {
    "galleries": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2019-04-26T04:19:02.265Z",
          "id": "uL2LDWGAjM",
          "image": {
            "url": "https://parsefiles.back4app.com/xSuYw2mNDXQF9j9q9fwFQeTTiX8vrseSK0WcfSMA/47381696a583ef1a4bb3588f1c0dab20_image.jpg",
            "name": "47381696a583ef1a4bb3588f1c0dab20_image.jpg"
          },
          "title": "EDIT ME!",
          "updatedAt": "2019-04-26T04:19:02.265Z"
        },
        {
          "ACL": null,
          "createdAt": "2019-04-26T12:08:37.693Z",
          "id": "c7WP8Vb3rt",
          "image": {
            "url": "https://parsefiles.back4app.com/xSuYw2mNDXQF9j9q9fwFQeTTiX8vrseSK0WcfSMA/c3b0f174c9230a2e2cffab7c62dd9acd_image.jpg",
            "name": "c3b0f174c9230a2e2cffab7c62dd9acd_image.jpg"
          },
          "title": "EDIT ME!",
          "updatedAt": "2019-04-26T12:08:37.693Z"
        }
      ]
    }
  }
}