Queries
Navixy Repository API is a work in progress. This documentation is published for preview purposes only and doesn't reflect a stable release. Structure, field names, and behaviors are subject to change.
assetGroupTypes
Lists asset group types for an organization.
assetGroupTypes(
organizationId: ID!
filter: CatalogItemFilter
first: Int
after: String
last: Int
before: String
orderBy: CatalogItemOrder = { field: ORDER, direction: ASC }
): AssetGroupTypeConnection!Arguments
organizationId
ID!
The organization to retrieve asset group types for.
filter
CatalogItemFilter
Filtering options for the returned asset group types.
orderBy
CatalogItemOrder
The ordering options for the returned asset group types.
Input types:
CatalogItemFilter
Filtering options for catalog items.
titleContains
String
Partial match on title (case-insensitive contains).
codes
[Code!]
Match any of these codes.
Output types:
AssetGroupTypeConnection
PageInfo (entity)
Information about the current page in a paginated connection.
hasNextPage
Boolean!
Whether more items exist after the current page.
hasPreviousPage
Boolean!
Whether more items exist before the current page.
startCursor
String
The cursor pointing to the first item in the current page.
endCursor
String
The cursor pointing to the last item in the current page.
assetGroup
Retrieves an asset group by its ID.
Arguments
id
ID!
The ID of the asset group to retrieve.
Output types:
AssetGroup
A group of assets.
Implements: Node, Versioned, Titled
id
ID!
A globally unique identifier. This ID is opaque and should not be parsed by clients.
version
Int!
The version number for optimistic locking. Incremented on each update. Must be provided in update/delete mutations to prevent lost updates.
title
String!
The human-readable display name.
color
HexColorCode
The color for UI display in hexadecimal format.
Organization (entity)
An organization in the hierarchy that owns entities and users.
Implements: Node, Versioned, Titled
id
ID!
A globally unique identifier. This ID is opaque and should not be parsed by clients.
version
Int!
The version number for optimistic locking. Incremented on each update. Must be provided in update/delete mutations to prevent lost updates.
title
String!
The human-readable display name.
externalId
String
An external system identifier for integration purposes.
isActive
Boolean!
Whether this organization is active.
assetGroups
Lists asset groups for an organization.
Arguments
organizationId
ID!
The organization to retrieve asset groups for.
filter
AssetGroupFilter
Filtering options for the returned asset groups.
orderBy
AssetGroupOrder
The ordering options for the returned asset groups.
Input types:
AssetGroupFilter
Filtering options for asset groups.
typeIds
[ID!]
Filter by group types (OR within field).
titleContains
String
Partial match on title (case-insensitive contains).
Output types:
AssetGroupConnection
PageInfo (entity)
Information about the current page in a paginated connection.
hasNextPage
Boolean!
Whether more items exist after the current page.
hasPreviousPage
Boolean!
Whether more items exist before the current page.
startCursor
String
The cursor pointing to the first item in the current page.
endCursor
String
The cursor pointing to the last item in the current page.
Last updated
Was this helpful?