query ListCachedCollectionLists()

in amplify/backend/function/idvworkflowfn/src/graphqlhelpers.js [93:120]


  query ListCachedCollectionLists(
    $configroot: String
    $collectionid: ModelStringKeyConditionInput
    $filter: ModelCachedCollectionListFilterInput
    $limit: Int
    $nextToken: String
    $sortDirection: ModelSortDirection
  ) {
    listCachedCollectionLists(
      configroot: $configroot
      collectionid: $collectionid
      filter: $filter
      limit: $limit
      nextToken: $nextToken
      sortDirection: $sortDirection
    ) {
      items {
        configroot
        collectionid
        arn
        created
        facemodel
        createdAt
        updatedAt
      }
      nextToken
    }
  }