Hub
No description
type Hub implements Node {
nodeId: ID!
id: String!
iconUrl: String
title: String!
description: String
content: String
order: Int!
parentHubId: String
workspaceId: String
version: Int!
updatedAt: Datetime!
createdAt: Datetime!
createdByWorkspaceAccountId: String
deletedAt: Datetime
isContentVisible: Boolean!
previewImageUrl: String
parentHub: Hub
hubsByParentHubIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [HubsOrderBy!] = [PRIMARY_KEY_ASC]
condition: HubCondition
filter: HubFilter
): HubsConnection!
hubsByParentHubId(
first: Int
offset: Int
orderBy: [HubsOrderBy!]
condition: HubCondition
filter: HubFilter
): [Hub!]!
hubLibraryResourcesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [HubLibraryResourcesOrderBy!] = [PRIMARY_KEY_ASC]
condition: HubLibraryResourceCondition
filter: HubLibraryResourceFilter
): HubLibraryResourcesConnection!
hubLibraryResources(
first: Int
offset: Int
orderBy: [HubLibraryResourcesOrderBy!]
condition: HubLibraryResourceCondition
filter: HubLibraryResourceFilter
): [HubLibraryResource!]!
}
Fields
Hub.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
Hub.id ● String! non-null scalar
Hub.iconUrl ● String scalar
Hub.title ● String! non-null scalar
Hub.description ● String scalar
Hub.content ● String scalar
Hub.order ● Int! non-null scalar
Hub.parentHubId ● String scalar
Hub.workspaceId ● String scalar
Hub.version ● Int! non-null scalar
Hub.updatedAt ● Datetime! non-null scalar
Hub.createdAt ● Datetime! non-null scalar
Hub.createdByWorkspaceAccountId ● String scalar
Hub.deletedAt ● Datetime scalar
Hub.isContentVisible ● Boolean! non-null scalar
Hub.previewImageUrl ● String scalar
Hub.parentHub ● Hub object
Reads a single Hub that is related to this Hub.
Hub.hubsByParentHubIdConnection ● HubsConnection! non-null object
Reads and enables pagination through a set of Hub.
Hub.hubsByParentHubIdConnection.first ● Int scalar
Only read the first n values of the set.
Hub.hubsByParentHubIdConnection.last ● Int scalar
Only read the last n values of the set.
Hub.hubsByParentHubIdConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Hub.hubsByParentHubIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Hub.hubsByParentHubIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Hub.hubsByParentHubIdConnection.orderBy ● [HubsOrderBy!] list enum
The method to use when ordering Hub.
Hub.hubsByParentHubIdConnection.condition ● HubCondition input
A condition to be used in determining which values should be returned by the collection.
Hub.hubsByParentHubIdConnection.filter ● HubFilter input
A filter to be used in determining which values should be returned by the collection.
Hub.hubsByParentHubId ● [Hub!]! non-null object
Reads and enables pagination through a set of Hub.
Hub.hubsByParentHubId.first ● Int scalar
Only read the first n values of the set.
Hub.hubsByParentHubId.offset ● Int scalar
Skip the first n values.
Hub.hubsByParentHubId.orderBy ● [HubsOrderBy!] list enum
The method to use when ordering Hub.
Hub.hubsByParentHubId.condition ● HubCondition input
A condition to be used in determining which values should be returned by the collection.
Hub.hubsByParentHubId.filter ● HubFilter input
A filter to be used in determining which values should be returned by the collection.
Hub.hubLibraryResourcesConnection ● HubLibraryResourcesConnection! non-null object
Reads and enables pagination through a set of HubLibraryResource.
Hub.hubLibraryResourcesConnection.first ● Int scalar
Only read the first n values of the set.
Hub.hubLibraryResourcesConnection.last ● Int scalar
Only read the last n values of the set.
Hub.hubLibraryResourcesConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Hub.hubLibraryResourcesConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Hub.hubLibraryResourcesConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Hub.hubLibraryResourcesConnection.orderBy ● [HubLibraryResourcesOrderBy!] list enum
The method to use when ordering HubLibraryResource.
Hub.hubLibraryResourcesConnection.condition ● HubLibraryResourceCondition input
A condition to be used in determining which values should be returned by the collection.
Hub.hubLibraryResourcesConnection.filter ● HubLibraryResourceFilter input
A filter to be used in determining which values should be returned by the collection.
Hub.hubLibraryResources ● [HubLibraryResource!]! non-null object
Reads and enables pagination through a set of HubLibraryResource.
Hub.hubLibraryResources.first ● Int scalar
Only read the first n values of the set.
Hub.hubLibraryResources.offset ● Int scalar
Skip the first n values.
Hub.hubLibraryResources.orderBy ● [HubLibraryResourcesOrderBy!] list enum
The method to use when ordering HubLibraryResource.
Hub.hubLibraryResources.condition ● HubLibraryResourceCondition input
A condition to be used in determining which values should be returned by the collection.
Hub.hubLibraryResources.filter ● HubLibraryResourceFilter input
A filter to be used in determining which values should be returned by the collection.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
hub query ● hubByNodeId query ● hubs query
Member Of
CreateHubLibraryResourcePayload object ● CreateHubPayload object ● DeleteHubLibraryResourcePayload object ● DeleteHubPayload object ● Hub object ● HubLibraryResource object ● HubsConnection object ● HubsEdge object ● UpdateHubLibraryResourcePayload object ● UpdateHubPayload object ● UpsertHubLibraryResourcePayload object