GloScrScript
Represents a script with details including its versions.
type GloScrScript {
createdAt: DateTime!
description: String
name: String!
scriptId: String!
versionById(
scriptVersionId: String!
): GloScrScriptVersion
versions(
after: String
before: String
first: Int
last: Int
order: [GloScrScriptVersionSortInput!]
): GloScrScriptVersionConnection
}
Fields
GloScrScript.createdAt ● DateTime! non-null scalar
GloScrScript.description ● String scalar
GloScrScript.name ● String! non-null scalar
GloScrScript.scriptId ● String! non-null scalar
GloScrScript.versionById ● GloScrScriptVersion object
Retrieves a specific version of the script by its version ID.
GloScrScript.versionById.scriptVersionId ● String! non-null scalar
GloScrScript.versions ● GloScrScriptVersionConnection object
Retrieves versions of the script with pagination options.
GloScrScript.versions.after ● String scalar
Returns the elements in the list that come after the specified cursor.
GloScrScript.versions.before ● String scalar
Returns the elements in the list that come before the specified cursor.
GloScrScript.versions.first ● Int scalar
Returns the first _n_ elements from the list.
GloScrScript.versions.last ● Int scalar
Returns the last _n_ elements from the list.