Magidoc

drives
Query

Return all the drives for an Organization

Arguments

#

first

after

Response

#

Returns DriveConnection !.

Example

#

    query ($first: Int, $after: ID) {
  drives(first: $first, after: $after) {
    edges {
      cursor
    }
    pageInfo {
      startCursor
      endCursor
      totalCount
      hasNextPage
      hasPreviousPage
    }
  }
}

  

3