API Guide v2

allResource

Return all the resources process during the latest sRTMS session.

QUERY

allResource(count: Int, nextToken: String): PaginationAllResource!

ARGUMENTS

count: Int
nextToken: String

OBJECTS

PaginationAllResource

FIELDS

items: [Resource!]!
nextToken: String

Sample Query

Request:

query allResource {
  allResource {
    items {
      resourceid
      resourcename
    }
    nextToken
  }
}

Response:

{
  "data": {
    "allResource": {
      "items": [
        {
          "resourceid": "16778572",
          "resourcename": "FATSTACKS16778572"
        }
      ],
      "nextToken": null
    }
  }
}

Support

if you have questions or issues using the API, please contact us as support@fatstacks.tech