JobType
No description
type JobType {
code: String
createdAt: Datetime!
description: String
id: UUID!
jobs(
filter: JobFilter
first: Int
offset: Int
orderBy: [JobOrderBy!]
): [Job!]!
jobsConnection(
after: Cursor
before: Cursor
filter: JobFilter
first: Int
last: Int
offset: Int
orderBy: [JobOrderBy!] = [NATURAL]
): JobConnection!
name: String!
projectTypes: [String]!
updatedAt: Datetime!
workflow: String!
}
Fields
JobType.code
● String
scalar
JobType.createdAt
● Datetime!
non-null scalar
JobType.description
● String
scalar
JobType.id
● UUID!
non-null scalar
JobType.jobs
● [Job!]!
non-null object
Reads and enables pagination through a set of Job
.
JobType.jobs.filter
● JobFilter
input
A filter to be used in determining which values should be returned by the collection.
JobType.jobs.first
● Int
scalar
Only read the first n
values of the set.
JobType.jobs.offset
● Int
scalar
Skip the first n
values.
JobType.jobs.orderBy
● [JobOrderBy!]
list enum
The method to use when ordering Job
.
JobType.jobsConnection
● JobConnection!
non-null object
Reads and enables pagination through a set of Job
.
JobType.jobsConnection.after
● Cursor
scalar
Read all values in the set after (below) this cursor.
JobType.jobsConnection.before
● Cursor
scalar
Read all values in the set before (above) this cursor.
JobType.jobsConnection.filter
● JobFilter
input
A filter to be used in determining which values should be returned by the collection.
JobType.jobsConnection.first
● Int
scalar
Only read the first n
values of the set.
JobType.jobsConnection.last
● Int
scalar
Only read the last n
values of the set.
JobType.jobsConnection.offset
● Int
scalar
Skip the first n
values from our after
cursor, an alternative to cursor
based pagination. May not be used with last
.
JobType.jobsConnection.orderBy
● [JobOrderBy!]
list enum
The method to use when ordering Job
.
JobType.name
● String!
non-null scalar
JobType.projectTypes
● [String]!
non-null scalar
JobType.updatedAt
● Datetime!
non-null scalar
JobType.workflow
● String!
non-null scalar
Returned By
jobType
query ● jobTypeByCode
query ● jobTypes
query
Member Of
Job
object