ReportableTable
No description
type ReportableTable implements Node {
nodeId: ID!
id: String!
accordId: String!
reportableTableTemplateId: String!
title: String
internal: Boolean!
workspaceId: String!
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
accord: Accord
template: ReportableTableTemplate
workspace: Workspace
reportableTableRowsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ReportableTableRowsOrderBy!] = [PRIMARY_KEY_ASC]
condition: ReportableTableRowCondition
filter: ReportableTableRowFilter
): ReportableTableRowsConnection!
reportableTableRows(
first: Int
offset: Int
orderBy: [ReportableTableRowsOrderBy!]
condition: ReportableTableRowCondition
filter: ReportableTableRowFilter
): [ReportableTableRow!]!
}
Fields
ReportableTable.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
ReportableTable.id ● String! non-null scalar
ReportableTable.accordId ● String! non-null scalar
ReportableTable.reportableTableTemplateId ● String! non-null scalar
ReportableTable.title ● String scalar
ReportableTable.internal ● Boolean! non-null scalar
ReportableTable.workspaceId ● String! non-null scalar
ReportableTable.version ● Int! non-null scalar
ReportableTable.deletedAt ● Datetime scalar
ReportableTable.updatedAt ● Datetime! non-null scalar
ReportableTable.createdAt ● Datetime! non-null scalar
ReportableTable.accord ● Accord object
Reads a single Accord that is related to this ReportableTable.
ReportableTable.template ● ReportableTableTemplate object
Reads a single ReportableTableTemplate that is related to this ReportableTable.
ReportableTable.workspace ● Workspace object
Reads a single Workspace that is related to this ReportableTable.
ReportableTable.reportableTableRowsConnection ● ReportableTableRowsConnection! non-null object
Reads and enables pagination through a set of ReportableTableRow.
ReportableTable.reportableTableRowsConnection.first ● Int scalar
Only read the first n values of the set.
ReportableTable.reportableTableRowsConnection.last ● Int scalar
Only read the last n values of the set.
ReportableTable.reportableTableRowsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
ReportableTable.reportableTableRowsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
ReportableTable.reportableTableRowsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
ReportableTable.reportableTableRowsConnection.orderBy ● [ReportableTableRowsOrderBy!] list enum
The method to use when ordering ReportableTableRow.
ReportableTable.reportableTableRowsConnection.condition ● ReportableTableRowCondition input
A condition to be used in determining which values should be returned by the collection.
ReportableTable.reportableTableRowsConnection.filter ● ReportableTableRowFilter input
A filter to be used in determining which values should be returned by the collection.
ReportableTable.reportableTableRows ● [ReportableTableRow!]! non-null object
Reads and enables pagination through a set of ReportableTableRow.
ReportableTable.reportableTableRows.first ● Int scalar
Only read the first n values of the set.
ReportableTable.reportableTableRows.offset ● Int scalar
Skip the first n values.
ReportableTable.reportableTableRows.orderBy ● [ReportableTableRowsOrderBy!] list enum
The method to use when ordering ReportableTableRow.
ReportableTable.reportableTableRows.condition ● ReportableTableRowCondition input
A condition to be used in determining which values should be returned by the collection.
ReportableTable.reportableTableRows.filter ● ReportableTableRowFilter 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
reportableTable query ● reportableTableByNodeId query ● reportableTables query
Member Of
Accord object ● CreateReportableTablePayload object ● CreateReportableTableRowPayload object ● DeleteReportableTablePayload object ● DeleteReportableTableRowPayload object ● RecoverReportableTablePayload object ● ReportableTableRow object ● ReportableTablesConnection object ● ReportableTablesEdge object ● ReportableTableTemplate object ● UpdateReportableTablePayload object ● UpdateReportableTableRowPayload object ● Workspace object