ReportableTableTemplate
No description
type ReportableTableTemplate implements Node {
nodeId: ID!
id: String!
title: String!
description: String
columns: JSON!
workspaceId: String!
createdByWorkspaceAccountId: String!
order: BigFloat!
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
reportableTablesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ReportableTablesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ReportableTableCondition
filter: ReportableTableFilter
): ReportableTablesConnection!
reportableTables(
first: Int
offset: Int
orderBy: [ReportableTablesOrderBy!]
condition: ReportableTableCondition
filter: ReportableTableFilter
): [ReportableTable!]!
}
Fields
ReportableTableTemplate.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
ReportableTableTemplate.id ● String! non-null scalar
ReportableTableTemplate.title ● String! non-null scalar
ReportableTableTemplate.description ● String scalar
ReportableTableTemplate.columns ● JSON! non-null scalar
ReportableTableTemplate.workspaceId ● String! non-null scalar
ReportableTableTemplate.createdByWorkspaceAccountId ● String! non-null scalar
ReportableTableTemplate.order ● BigFloat! non-null scalar
ReportableTableTemplate.version ● Int! non-null scalar
ReportableTableTemplate.deletedAt ● Datetime scalar
ReportableTableTemplate.updatedAt ● Datetime! non-null scalar
ReportableTableTemplate.createdAt ● Datetime! non-null scalar
ReportableTableTemplate.workspace ● Workspace object
Reads a single Workspace that is related to this ReportableTableTemplate.
ReportableTableTemplate.createdByWorkspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this ReportableTableTemplate.
ReportableTableTemplate.reportableTablesConnection ● ReportableTablesConnection! non-null object
Reads and enables pagination through a set of ReportableTable.
ReportableTableTemplate.reportableTablesConnection.first ● Int scalar
Only read the first n values of the set.
ReportableTableTemplate.reportableTablesConnection.last ● Int scalar
Only read the last n values of the set.
ReportableTableTemplate.reportableTablesConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
ReportableTableTemplate.reportableTablesConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
ReportableTableTemplate.reportableTablesConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
ReportableTableTemplate.reportableTablesConnection.orderBy ● [ReportableTablesOrderBy!] list enum
The method to use when ordering ReportableTable.
ReportableTableTemplate.reportableTablesConnection.condition ● ReportableTableCondition input
A condition to be used in determining which values should be returned by the collection.
ReportableTableTemplate.reportableTablesConnection.filter ● ReportableTableFilter input
A filter to be used in determining which values should be returned by the collection.
ReportableTableTemplate.reportableTables ● [ReportableTable!]! non-null object
Reads and enables pagination through a set of ReportableTable.
ReportableTableTemplate.reportableTables.first ● Int scalar
Only read the first n values of the set.
ReportableTableTemplate.reportableTables.offset ● Int scalar
Skip the first n values.
ReportableTableTemplate.reportableTables.orderBy ● [ReportableTablesOrderBy!] list enum
The method to use when ordering ReportableTable.
ReportableTableTemplate.reportableTables.condition ● ReportableTableCondition input
A condition to be used in determining which values should be returned by the collection.
ReportableTableTemplate.reportableTables.filter ● ReportableTableFilter 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
reportableTableTemplate query ● reportableTableTemplateByNodeId query ● reportableTableTemplates query
Member Of
CreateReportableTablePayload object ● CreateReportableTableTemplatePayload object ● DeleteReportableTablePayload object ● DeleteReportableTableTemplatePayload object ● RecoverReportableTablePayload object ● RecoverReportableTableTemplatePayload object ● ReportableTable object ● ReportableTableTemplatesConnection object ● ReportableTableTemplatesEdge object ● UpdateReportableTablePayload object ● UpdateReportableTableTemplatePayload object ● Workspace object ● WorkspaceAccount object