Get Subaccount Access List
Example
query getSubaccounts {
users(first: 10) {
nodes {
username
}
}
}
Response
{
"data": {
"users": {
"nodes": [
{
"username": ""
}
]
}
}
}
Arguments
-
uname
(String!
) -
first
(Int
) Only read the firstn
values of the set. -
last
(Int
) Only read the lastn
values of the set. -
offset
(Int
) Skip the firstn
values from ourafter
cursor, an alternative to cursor based pagination. May not be used withlast
. -
before
(Cursor
) Read all values in the set before (above) this cursor. -
after
(Cursor
) Read all values in the set after (below) this cursor.
Filter
GetSubaccountAccessListRecordFilter
A filter to be used in determining which values should be returned by the collection.
type GetSubaccountAccessListRecordFilter {
email: StringFilter
roles: StringFilter
and: [GetSubaccountAccessListRecordFilter!]
or: [GetSubaccountAccessListRecordFilter!]
not: GetSubaccountAccessListRecordFilter
}
Fields
-
email
(StringFilter
) Filter by the object’semail
field. -
roles
(StringFilter
) Filter by the object’sroles
field. -
and
([GetSubaccountAccessListRecordFilter!]) Checks for all expressions in this list. -
or
([GetSubaccountAccessListRecordFilter!]) Checks for any expressions in this list. -
not
([GetSubaccountAccessListRecordFilter]) Negates the expression.
Type
GetSubaccountAccessListConnection
A connection to a list of GetSubaccountAccessListRecord
values.
type GetSubaccountAccessListConnection {
nodes: [GetSubaccountAccessListRecord!]!
edges: [GetSubaccountAccessListEdge!]!
totalCount: Int!
}
Fields
nodes
[GetSubaccountAccessListRecord!]!
The return type of our getSubaccountAccessList
query.
type GetSubaccountAccessListRecord {
email: String
roles: String
}
edges
[GetSubaccountAccessListEdge!]!
A list of edges which contains the GetSubaccountAccessListRecord
and cursor to aid in pagination.
type GetSubaccountAccessListEdge {
cursor: Cursor
node: GetSubaccountAccessListRecord!
}
totalCount
(Int
)
The count of all GetSubaccountAccessListRecord
you could get from the connection.