OBJECT

Query

Root of the Assignar Core Query API

link GraphQL Schema definition

  • type Query {
  • # A list of Activities
  • #
  • # Arguments
  • # id: Select a single Activity by its ID
  • # exact: Exact match query arguments for Activity
  • # fuzzy: Fuzzy match query arguments for Activity
  • # range: Range match query arguments for Activity
  • # options: Query options for Activity
  • Activities(
  • id: Int,
  • exact: Activity_Exact,
  • fuzzy: Activity_Fuzzy,
  • range: Activity_Range,
  • options: Activity_Options
  • ): [Activity]
  • # A list of Allocations
  • #
  • # Arguments
  • # id: Select a single Allocation by its ID
  • # exact: Exact match query arguments for Allocation
  • # fuzzy: Fuzzy match query arguments for Allocation
  • # range: Range match query arguments for Allocation
  • # options: Query options for Allocation
  • Allocations(
  • id: Int,
  • exact: Allocation_Exact,
  • fuzzy: Allocation_Fuzzy,
  • range: Allocation_Range,
  • options: Allocation_Options
  • ): [Allocation]
  • # A list of Allocation Statuses
  • #
  • # Arguments
  • # id: Select a single AllocationStatus by its ID
  • # exact: Exact match query arguments for AllocationStatus
  • # fuzzy: Fuzzy match query arguments for AllocationStatus
  • # range: Range match query arguments for AllocationStatus
  • # options: Query options for AllocationStatus
  • AllocationStatuses(
  • id: Int,
  • exact: AllocationStatus_Exact,
  • fuzzy: AllocationStatus_Fuzzy,
  • range: AllocationStatus_Range,
  • options: AllocationStatus_Options
  • ): [AllocationStatus]
  • # A list of Allowances
  • #
  • # Arguments
  • # id: Select a single Allowance by its ID
  • # exact: Exact match query arguments for Allowance
  • # fuzzy: Fuzzy match query arguments for Allowance
  • # range: Range match query arguments for Allowance
  • # options: Query options for Allowance
  • Allowances(
  • id: Int,
  • exact: Allowance_Exact,
  • fuzzy: Allowance_Fuzzy,
  • range: Allowance_Range,
  • options: Allowance_Options
  • ): [Allowance]
  • # A list of Asset Attachment Documents
  • #
  • # Arguments
  • # id: Select a single AssetAttachmentDocument by its ID
  • # exact: Exact match query arguments for AssetAttachmentDocument
  • # fuzzy: Fuzzy match query arguments for AssetAttachmentDocument
  • # range: Range match query arguments for AssetAttachmentDocument
  • # options: Query options for AssetAttachmentDocument
  • AssetAttachmentDocuments(
  • id: Int,
  • exact: AssetAttachmentDocument_Exact,
  • fuzzy: AssetAttachmentDocument_Fuzzy,
  • range: AssetAttachmentDocument_Range,
  • options: AssetAttachmentDocument_Options
  • ): [AssetAttachmentDocument]
  • # A list of AssetAttachments
  • #
  • # Arguments
  • # id: Select a single AssetAttachment by its ID
  • # exact: Exact match query arguments for AssetAttachment
  • # fuzzy: Fuzzy match query arguments for AssetAttachment
  • # range: Range match query arguments for AssetAttachment
  • # options: Query options for AssetAttachment
  • AssetAttachments(
  • id: Int,
  • exact: AssetAttachment_Exact,
  • fuzzy: AssetAttachment_Fuzzy,
  • range: AssetAttachment_Range,
  • options: AssetAttachment_Options
  • ): [AssetAttachment]
  • # A list of Asset Documents
  • #
  • # Arguments
  • # id: Select a single AssetDocument by its ID
  • # exact: Exact match query arguments for AssetDocument
  • # fuzzy: Fuzzy match query arguments for AssetDocument
  • # range: Range match query arguments for AssetDocument
  • # options: Query options for AssetDocument
  • AssetDocuments(
  • id: Int,
  • exact: AssetDocument_Exact,
  • fuzzy: AssetDocument_Fuzzy,
  • range: AssetDocument_Range,
  • options: AssetDocument_Options
  • ): [AssetDocument]
  • # A list of Assets
  • #
  • # Arguments
  • # id: Select a single Asset by its ID
  • # exact: Exact match query arguments for Asset
  • # fuzzy: Fuzzy match query arguments for Asset
  • # range: Range match query arguments for Asset
  • # options: Query options for Asset
  • Assets(
  • id: Int,
  • exact: Asset_Exact,
  • fuzzy: Asset_Fuzzy,
  • range: Asset_Range,
  • options: Asset_Options
  • ): [Asset]
  • # A list of Autocomplete items
  • #
  • # Arguments
  • # type: [Not documented]
  • # tags: List of Unique tag ID.
  • # client_id: The unique client ID.
  • # project_id: Unique project ID.
  • # task_id: Unique task ID.
  • # query: The query string.
  • # limit: The maximum number of results to return. Default is 25.
  • # Max is 50.
  • # is_active: true to show the active items, false otherwise.
  • # Defaults to true.
  • # user_type: The type of users to return
  • Autocomplete(
  • type: AutocompleteType!,
  • tags: [Int!],
  • client_id: Int,
  • project_id: Int,
  • task_id: Int,
  • query: String,
  • limit: Int,
  • is_active: Boolean,
  • user_type: UserTypes
  • ): [Autocomplete]
  • # A list of AutocompleteContact items
  • #
  • # Arguments
  • # client_id: Only fetch contacts that belong to these clients
  • # project_id: Only fetch contacts that belong to these projects
  • # supplier_id: Only fetch contacts that belong to these suppliers
  • # query: The query string.
  • # has_email: If true will only return contacts with emails.
  • # limit: The maximum number of results to return. Default is 25.
  • # Max is 50.
  • AutocompleteContacts(
  • client_id: [Int],
  • project_id: [Int],
  • supplier_id: [Int],
  • query: String,
  • has_email: Boolean,
  • limit: Int
  • ): [AutocompleteContacts]
  • # Detailed information for a BIM 360 document
  • #
  • # Arguments
  • # document_urn: The document uniform resource name in format
  • # "project/as2dw/folder/g1req/item/1d3s/version/1"
  • BIM360Document(document_urn: String!): BIM360Document
  • # A list of ChargeCodes
  • #
  • # Arguments
  • # id: Select a single ChargeCode by its ID
  • # exact: Exact match query arguments for ChargeCode
  • # fuzzy: Fuzzy match query arguments for ChargeCode
  • # range: Range match query arguments for ChargeCode
  • # options: Query options for ChargeCode
  • ChargeCodes(
  • id: Int,
  • exact: ChargeCode_Exact,
  • fuzzy: ChargeCode_Fuzzy,
  • range: ChargeCode_Range,
  • options: ChargeCode_Options
  • ): [ChargeCode]
  • # A list of Client Documents
  • #
  • # Arguments
  • # id: Select a single ClientDocument by its ID
  • # exact: Exact match query arguments for ClientDocument
  • # fuzzy: Fuzzy match query arguments for ClientDocument
  • # range: Range match query arguments for ClientDocument
  • # options: Query options for ClientDocument
  • ClientDocuments(
  • id: Int,
  • exact: ClientDocument_Exact,
  • fuzzy: ClientDocument_Fuzzy,
  • range: ClientDocument_Range,
  • options: ClientDocument_Options
  • ): [ClientDocument]
  • # A list of Clients
  • #
  • # Arguments
  • # id: Select a single Client by its ID
  • # exact: Exact match query arguments for Client
  • # fuzzy: Fuzzy match query arguments for Client
  • # range: Range match query arguments for Client
  • # options: Query options for Client
  • Clients(
  • id: Int,
  • exact: Client_Exact,
  • fuzzy: Client_Fuzzy,
  • range: Client_Range,
  • options: Client_Options
  • ): [Client]
  • # A list of Competencies
  • #
  • # Arguments
  • # id: Select a single Competency by its ID
  • # exact: Exact match query arguments for Competency
  • # fuzzy: Fuzzy match query arguments for Competency
  • # range: Range match query arguments for Competency
  • # options: Query options for Competency
  • Competencies(
  • id: Int,
  • exact: Competency_Exact,
  • fuzzy: Competency_Fuzzy,
  • range: Competency_Range,
  • options: Competency_Options
  • ): [Competency]
  • # A list of Contacts
  • #
  • # Arguments
  • # id: Select a single Contact by its ID
  • # exact: Exact match query arguments for Contact
  • # fuzzy: Fuzzy match query arguments for Contact
  • # range: Range match query arguments for Contact
  • # options: Query options for Contact
  • Contacts(
  • id: Int,
  • exact: Contact_Exact,
  • fuzzy: Contact_Fuzzy,
  • range: Contact_Range,
  • options: Contact_Options
  • ): [Contact]
  • # A list of Digital Dockets
  • #
  • # Arguments
  • # id: Select a single DigitalDocket by its ID
  • # exact: Exact match query arguments for DigitalDocket
  • # fuzzy: Fuzzy match query arguments for DigitalDocket
  • # range: Range match query arguments for DigitalDocket
  • # options: Query options for DigitalDocket
  • DigitalDockets(
  • id: Int,
  • exact: DigitalDocket_Exact,
  • fuzzy: DigitalDocket_Fuzzy,
  • range: DigitalDocket_Range,
  • options: DigitalDocket_Options
  • ): [DigitalDocket]
  • # A list of DigitalDocketTemplates
  • #
  • # Arguments
  • # id: Select a single DigitalDocketTemplate by its ID
  • # exact: Exact match query arguments for DigitalDocketTemplate
  • # fuzzy: Fuzzy match query arguments for DigitalDocketTemplate
  • # range: Range match query arguments for DigitalDocketTemplate
  • # options: Query options for DigitalDocketTemplate
  • DigitalDocketTemplates(
  • id: Int,
  • exact: DigitalDocketTemplate_Exact,
  • fuzzy: DigitalDocketTemplate_Fuzzy,
  • range: DigitalDocketTemplate_Range,
  • options: DigitalDocketTemplate_Options
  • ): [DigitalDocketTemplate]
  • # A list of Dockets
  • #
  • # Arguments
  • # id: Select a single Docket by its ID
  • # exact: Exact match query arguments for Docket
  • # fuzzy: Fuzzy match query arguments for Docket
  • # range: Range match query arguments for Docket
  • # options: Query options for Docket
  • Dockets(
  • id: Int,
  • exact: Docket_Exact,
  • fuzzy: Docket_Fuzzy,
  • range: Docket_Range,
  • options: Docket_Options
  • ): [Docket]
  • # A list of Documents
  • #
  • # Arguments
  • # id: Select a single Document by its ID
  • # exact: Exact match query arguments for Document
  • # fuzzy: Fuzzy match query arguments for Document
  • # range: Range match query arguments for Document
  • # options: Query options for Document
  • Documents(
  • id: Int,
  • exact: Document_Exact,
  • fuzzy: Document_Fuzzy,
  • range: Document_Range,
  • options: Document_Options
  • ): [Document]
  • # A list of Document Types
  • #
  • # Arguments
  • # id: Select a single DocumentType by its ID
  • # exact: Exact match query arguments for DocumentType
  • # fuzzy: Fuzzy match query arguments for DocumentType
  • # range: Range match query arguments for DocumentType
  • # options: Query options for DocumentType
  • DocumentTypes(
  • id: Int,
  • exact: DocumentType_Exact,
  • fuzzy: DocumentType_Fuzzy,
  • range: DocumentType_Range,
  • options: DocumentType_Options
  • ): [DocumentType]
  • # A list of Employment Types
  • #
  • # Arguments
  • # id: Select a single EmploymentType by its ID
  • # exact: Exact match query arguments for EmploymentType
  • # fuzzy: Fuzzy match query arguments for EmploymentType
  • # range: Range match query arguments for EmploymentType
  • # options: Query options for EmploymentType
  • EmploymentTypes(
  • id: Int,
  • exact: EmploymentType_Exact,
  • fuzzy: EmploymentType_Fuzzy,
  • range: EmploymentType_Range,
  • options: EmploymentType_Options
  • ): [EmploymentType]
  • # A single feed item.
  • #
  • # Arguments
  • # type: [Not documented]
  • # id: [Not documented]
  • FeedItem(type: String!, id: String!): FeedItem
  • # A list of feed items.
  • #
  • # Arguments
  • # pagination: Options for pagination.
  • FeedItems(pagination: Pagination): [FeedItem]
  • # A list of Form Results
  • #
  • # Arguments
  • # id: Select a single FormResult by its ID
  • # exact: Exact match query arguments for FormResult
  • # fuzzy: Fuzzy match query arguments for FormResult
  • # range: Range match query arguments for FormResult
  • # options: Query options for FormResult
  • FormResults(
  • id: Int,
  • exact: FormResult_Exact,
  • fuzzy: FormResult_Fuzzy,
  • range: FormResult_Range,
  • options: FormResult_Options
  • ): [FormResult]
  • # A list of Forms
  • #
  • # Arguments
  • # id: Select a single Form by its ID
  • # exact: Exact match query arguments for Form
  • # fuzzy: Fuzzy match query arguments for Form
  • # range: Range match query arguments for Form
  • # options: Query options for Form
  • Forms(
  • id: Int,
  • exact: Form_Exact,
  • fuzzy: Form_Fuzzy,
  • range: Form_Range,
  • options: Form_Options
  • ): [Form]
  • # A list of Form Result Past Versions
  • #
  • # Arguments
  • # id: Select a single FormResultPastVersion by its ID
  • # exact: Exact match query arguments for FormResultPastVersion
  • # fuzzy: Fuzzy match query arguments for FormResultPastVersion
  • # range: Range match query arguments for FormResultPastVersion
  • # options: Query options for FormResultPastVersion
  • FormResultPastVersions(
  • id: Int,
  • exact: FormResultPastVersion_Exact,
  • fuzzy: FormResultPastVersion_Fuzzy,
  • range: FormResultPastVersion_Range,
  • options: FormResultPastVersion_Options
  • ): [FormResultPastVersion]
  • # A list of Form Statuses
  • #
  • # Arguments
  • # id: Select a single FormStatus by its ID
  • # exact: Exact match query arguments for FormStatus
  • # fuzzy: Fuzzy match query arguments for FormStatus
  • # range: Range match query arguments for FormStatus
  • # options: Query options for FormStatus
  • FormStatuses(
  • id: Int,
  • exact: FormStatus_Exact,
  • fuzzy: FormStatus_Fuzzy,
  • range: FormStatus_Range,
  • options: FormStatus_Options
  • ): [FormStatus]
  • # A list of form webhooks
  • #
  • # Arguments
  • # id: Select a single FormWebhook by its ID
  • # exact: Exact match query arguments for FormWebhook
  • # fuzzy: Fuzzy match query arguments for FormWebhook
  • # range: Range match query arguments for FormWebhook
  • # options: Query options for FormWebhook
  • FormWebhooks(
  • id: Int,
  • exact: FormWebhook_Exact,
  • fuzzy: FormWebhook_Fuzzy,
  • range: FormWebhook_Range,
  • options: FormWebhook_Options
  • ): [FormWebhook]
  • # A list of Inductions
  • #
  • # Arguments
  • # id: Select a single Induction by its ID
  • # exact: Exact match query arguments for Induction
  • # fuzzy: Fuzzy match query arguments for Induction
  • # range: Range match query arguments for Induction
  • # options: Query options for Induction
  • Inductions(
  • id: Int,
  • exact: Induction_Exact,
  • fuzzy: Induction_Fuzzy,
  • range: Induction_Range,
  • options: Induction_Options
  • ): [Induction]
  • # A list of journal entries.
  • #
  • # Arguments
  • # exact: [Not documented]
  • # range: [Not documented]
  • # options: [Not documented]
  • JournalEntries(
  • exact: JournalEntry_Exact,
  • range: JournalEntry_Range,
  • options: JournalEntry_Options
  • ): [JournalEntry]
  • # A list of Leave Requests
  • #
  • # Arguments
  • # id: Select a single LeaveRequest by its ID
  • # exact: Exact match query arguments for LeaveRequest
  • # fuzzy: Fuzzy match query arguments for LeaveRequest
  • # range: Range match query arguments for LeaveRequest
  • # options: Query options for LeaveRequest
  • LeaveRequests(
  • id: Int,
  • exact: LeaveRequest_Exact,
  • fuzzy: LeaveRequest_Fuzzy,
  • range: LeaveRequest_Range,
  • options: LeaveRequest_Options
  • ): [LeaveRequest]
  • # A list of Leave Types
  • #
  • # Arguments
  • # id: Select a single LeaveType by its ID
  • # exact: Exact match query arguments for LeaveType
  • # fuzzy: Fuzzy match query arguments for LeaveType
  • # range: Range match query arguments for LeaveType
  • # options: Query options for LeaveType
  • LeaveTypes(
  • id: Int,
  • exact: LeaveType_Exact,
  • fuzzy: LeaveType_Fuzzy,
  • range: LeaveType_Range,
  • options: LeaveType_Options
  • ): [LeaveType]
  • # A list of Materials
  • #
  • # Arguments
  • # id: Select a single Material by its ID
  • # exact: Exact match query arguments for Material
  • # fuzzy: Fuzzy match query arguments for Material
  • # range: Range match query arguments for Material
  • # options: Query options for Material
  • Materials(
  • id: Int,
  • exact: Material_Exact,
  • fuzzy: Material_Fuzzy,
  • range: Material_Range,
  • options: Material_Options
  • ): [Material]
  • # A list of material transactions
  • #
  • # Arguments
  • # id: Select a single MaterialTransaction by its ID
  • # exact: Exact match query arguments for MaterialTransaction
  • # fuzzy: Fuzzy match query arguments for MaterialTransaction
  • # range: Range match query arguments for MaterialTransaction
  • # options: Query options for MaterialTransaction
  • MaterialTransactions(
  • id: Int,
  • exact: MaterialTransaction_Exact,
  • fuzzy: MaterialTransaction_Fuzzy,
  • range: MaterialTransaction_Range,
  • options: MaterialTransaction_Options
  • ): [MaterialTransaction]
  • # A list of material transaction totals
  • #
  • # Arguments
  • # exact: Exact match query arguments for MaterialTransactionTotal
  • # fuzzy: Fuzzy match query arguments for MaterialTransactionTotal
  • # range: Range match query arguments for MaterialTransactionTotal
  • # options: Query options for MaterialTransactionTotal
  • MaterialTransactionTotals(
  • exact: MaterialTransactionTotal_Exact,
  • fuzzy: MaterialTransactionTotal_Fuzzy,
  • range: MaterialTransactionTotal_Range,
  • options: MaterialTransactionTotal_Options
  • ): [MaterialTransactionTotal]
  • # A list of MergedDocuments
  • #
  • # Arguments
  • # id: Select a single MergedDocument by its ID
  • # exact: Exact match query arguments for MergedDocument
  • # fuzzy: Fuzzy match query arguments for MergedDocument
  • # range: Range match query arguments for MergedDocument
  • # options: Query options for MergedDocument
  • MergedDocuments(
  • id: Int,
  • exact: MergedDocument_Exact,
  • fuzzy: MergedDocument_Fuzzy,
  • range: MergedDocument_Range,
  • options: MergedDocument_Options
  • ): [MergedDocument]
  • # A list of Merge Templates
  • #
  • # Arguments
  • # id: Select a single MergeTemplate by its ID
  • # exact: Exact match query arguments for MergeTemplate
  • # fuzzy: Fuzzy match query arguments for MergeTemplate
  • # range: Range match query arguments for MergeTemplate
  • # options: Query options for MergeTemplate
  • MergeTemplates(
  • id: Int,
  • exact: MergeTemplate_Exact,
  • fuzzy: MergeTemplate_Fuzzy,
  • range: MergeTemplate_Range,
  • options: MergeTemplate_Options
  • ): [MergeTemplate]
  • # A list of Orders
  • #
  • # Arguments
  • # id: Select a single Order by its ID
  • # exact: Exact match query arguments for Order
  • # fuzzy: Fuzzy match query arguments for Order
  • # range: Range match query arguments for Order
  • # options: Query options for Order
  • Orders(
  • id: Int,
  • exact: Order_Exact,
  • fuzzy: Order_Fuzzy,
  • range: Order_Range,
  • options: Order_Options
  • ): [Order]
  • # A list of Order Statuses
  • #
  • # Arguments
  • # id: Select a single OrderStatus by its ID
  • # exact: Exact match query arguments for OrderStatus
  • # fuzzy: Fuzzy match query arguments for OrderStatus
  • # range: Range match query arguments for OrderStatus
  • # options: Query options for OrderStatus
  • OrderStatuses(
  • id: Int,
  • exact: OrderStatus_Exact,
  • fuzzy: OrderStatus_Fuzzy,
  • range: OrderStatus_Range,
  • options: OrderStatus_Options
  • ): [OrderStatus]
  • # A list of Order Tasks
  • #
  • # Arguments
  • # id: Select a single OrderTask by its ID
  • # exact: Exact match query arguments for OrderTask
  • # fuzzy: Fuzzy match query arguments for OrderTask
  • # range: Range match query arguments for OrderTask
  • # options: Query options for OrderTask
  • OrderTasks(
  • id: Int,
  • exact: OrderTask_Exact,
  • fuzzy: OrderTask_Fuzzy,
  • range: OrderTask_Range,
  • options: OrderTask_Options
  • ): [OrderTask]
  • # A list of order task work item codes
  • #
  • # Arguments
  • # id: Select a single OrderTaskWorkItemCode by its ID
  • # exact: Exact match query arguments for OrderTaskWorkItemCode
  • # fuzzy: Fuzzy match query arguments for OrderTaskWorkItemCode
  • # range: Range match query arguments for OrderTaskWorkItemCode
  • # options: Query options for OrderTaskWorkItemCode
  • OrderTaskWorkItemCodes(
  • id: Int,
  • exact: OrderTaskWorkItemCode_Exact,
  • fuzzy: OrderTaskWorkItemCode_Fuzzy,
  • range: OrderTaskWorkItemCode_Range,
  • options: OrderTaskWorkItemCode_Options
  • ): [OrderTaskWorkItemCode] @deprecated( reason: "Use OrderTaskWorkItems instead" )
  • # A list of order task work items
  • #
  • # Arguments
  • # id: Select a single OrderTaskWorkItem by its ID
  • # exact: Exact match query arguments for OrderTaskWorkItem
  • # fuzzy: Fuzzy match query arguments for OrderTaskWorkItem
  • # range: Range match query arguments for OrderTaskWorkItem
  • # options: Query options for OrderTaskWorkItem
  • OrderTaskWorkItems(
  • id: Int,
  • exact: OrderTaskWorkItem_Exact,
  • fuzzy: OrderTaskWorkItem_Fuzzy,
  • range: OrderTaskWorkItem_Range,
  • options: OrderTaskWorkItem_Options
  • ): [OrderTaskWorkItem]
  • # A list of Order Templates
  • #
  • # Arguments
  • # id: Select a single OrderTemplate by its ID
  • # exact: Exact match query arguments for OrderTemplate
  • # fuzzy: Fuzzy match query arguments for OrderTemplate
  • # range: Range match query arguments for OrderTemplate
  • # options: Query options for OrderTemplate
  • OrderTemplates(
  • id: Int,
  • exact: OrderTemplate_Exact,
  • fuzzy: OrderTemplate_Fuzzy,
  • range: OrderTemplate_Range,
  • options: OrderTemplate_Options
  • ): [OrderTemplate]
  • # A list of Order Types
  • #
  • # Arguments
  • # id: Select a single OrderType by its ID
  • # exact: Exact match query arguments for OrderType
  • # fuzzy: Fuzzy match query arguments for OrderType
  • # range: Range match query arguments for OrderType
  • # options: Query options for OrderType
  • OrderTypes(
  • id: Int,
  • exact: OrderType_Exact,
  • fuzzy: OrderType_Fuzzy,
  • range: OrderType_Range,
  • options: OrderType_Options
  • ): [OrderType]
  • # A list of activities that overlap with the provided datetime ranges for the
  • # provided users.
  • #
  • # Arguments
  • # input: [Not documented]
  • OverlappingActivities(input: OverlappingTimesheetsInput): [OverlappingActivities]
  • # A list of PayCodes
  • #
  • # Arguments
  • # id: Select a single PayCode by its ID
  • # exact: Exact match query arguments for PayCode
  • # fuzzy: Fuzzy match query arguments for PayCode
  • # range: Range match query arguments for PayCode
  • # options: Query options for PayCode
  • PayCodes(
  • id: Int,
  • exact: PayCode_Exact,
  • fuzzy: PayCode_Fuzzy,
  • range: PayCode_Range,
  • options: PayCode_Options
  • ): [PayCode]
  • # A list of Project Documents
  • #
  • # Arguments
  • # id: Select a single ProjectDocument by its ID
  • # exact: Exact match query arguments for ProjectDocument
  • # fuzzy: Fuzzy match query arguments for ProjectDocument
  • # range: Range match query arguments for ProjectDocument
  • # options: Query options for ProjectDocument
  • ProjectDocuments(
  • id: Int,
  • exact: ProjectDocument_Exact,
  • fuzzy: ProjectDocument_Fuzzy,
  • range: ProjectDocument_Range,
  • options: ProjectDocument_Options
  • ): [ProjectDocument]
  • # A list of Projects
  • #
  • # Arguments
  • # id: Select a single Project by its ID
  • # exact: Exact match query arguments for Project
  • # fuzzy: Fuzzy match query arguments for Project
  • # range: Range match query arguments for Project
  • # options: Query options for Project
  • Projects(
  • id: Int,
  • exact: Project_Exact,
  • fuzzy: Project_Fuzzy,
  • range: Project_Range,
  • options: Project_Options
  • ): [Project]
  • # A list of project activities
  • #
  • # Arguments
  • # id: Select a single ProjectActivity by its ID
  • # exact: Exact match query arguments for ProjectActivity
  • # fuzzy: Fuzzy match query arguments for ProjectActivity
  • # range: Range match query arguments for ProjectActivity
  • # options: Query options for ProjectActivity
  • ProjectActivities(
  • id: Int,
  • exact: ProjectActivity_Exact,
  • fuzzy: ProjectActivity_Fuzzy,
  • range: ProjectActivity_Range,
  • options: ProjectActivity_Options
  • ): [ProjectActivity]
  • # (DEPRCATED) A list of project work item codes
  • #
  • # Arguments
  • # id: Select a single ProjectWorkItemCode by its ID
  • # exact: Exact match query arguments for ProjectWorkItemCode
  • # fuzzy: Fuzzy match query arguments for ProjectWorkItemCode
  • # range: Range match query arguments for ProjectWorkItemCode
  • # options: Query options for ProjectWorkItemCode
  • ProjectWorkItemCodes(
  • id: Int,
  • exact: ProjectWorkItemCode_Exact,
  • fuzzy: ProjectWorkItemCode_Fuzzy,
  • range: ProjectWorkItemCode_Range,
  • options: ProjectWorkItemCode_Options
  • ): [ProjectWorkItemCode] @deprecated( reason: "Use ProjectWorkItems instead" )
  • # A list of project work items
  • #
  • # Arguments
  • # id: Select a single ProjectWorkItem by its ID
  • # exact: Exact match query arguments for ProjectWorkItem
  • # fuzzy: Fuzzy match query arguments for ProjectWorkItem
  • # range: Range match query arguments for ProjectWorkItem
  • # options: Query options for ProjectWorkItem
  • ProjectWorkItems(
  • id: Int,
  • exact: ProjectWorkItem_Exact,
  • fuzzy: ProjectWorkItem_Fuzzy,
  • range: ProjectWorkItem_Range,
  • options: ProjectWorkItem_Options
  • ): [ProjectWorkItem]
  • # A list of Skills
  • #
  • # Arguments
  • # id: Select a single Settings by its ID
  • # exact: Exact match query arguments for Settings
  • # fuzzy: Fuzzy match query arguments for Settings
  • # range: Range match query arguments for Settings
  • # options: Query options for Settings
  • Settings(
  • id: Int,
  • exact: Settings_Exact,
  • fuzzy: Settings_Fuzzy,
  • range: Settings_Range,
  • options: Settings_Options
  • ): [Settings]
  • # A list of Site Diaries
  • #
  • # Arguments
  • # id: Select a single SiteDiary by its ID
  • # exact: Exact match query arguments for SiteDiary
  • # fuzzy: Fuzzy match query arguments for SiteDiary
  • # range: Range match query arguments for SiteDiary
  • # options: Query options for SiteDiary
  • SiteDiaries(
  • id: Int,
  • exact: SiteDiary_Exact,
  • fuzzy: SiteDiary_Fuzzy,
  • range: SiteDiary_Range,
  • options: SiteDiary_Options
  • ): [SiteDiary]
  • # A list of Skills
  • #
  • # Arguments
  • # id: Select a single Skill by its ID
  • # exact: Exact match query arguments for Skill
  • # fuzzy: Fuzzy match query arguments for Skill
  • # range: Range match query arguments for Skill
  • # options: Query options for Skill
  • Skills(
  • id: Int,
  • exact: Skill_Exact,
  • fuzzy: Skill_Fuzzy,
  • range: Skill_Range,
  • options: Skill_Options
  • ): [Skill]
  • # A single SMS conversation.
  • #
  • # Arguments
  • # filter: Filter a single SMS conversation by user type and id
  • # pagination: Options for pagination.
  • SMSConversation(filter: SMSFilter!, pagination: Pagination): SMSConversation
  • # A list of SMS conversations.
  • #
  • # Arguments
  • # filter: Filter SMS conversations
  • # pagination: Options for pagination.
  • SMSConversations(
  • filter: SMSConversationsFilter,
  • pagination: Pagination
  • ): [SMSConversation]
  • # A list of available States
  • #
  • # Arguments
  • # id: Select a single State by its ID
  • # exact: Exact match query arguments for State
  • # fuzzy: Fuzzy match query arguments for State
  • # range: Range match query arguments for State
  • # options: Query options for State
  • States(
  • id: Int,
  • exact: State_Exact,
  • fuzzy: State_Fuzzy,
  • range: State_Range,
  • options: State_Options
  • ): [State]
  • # A list of Supplier Documents
  • #
  • # Arguments
  • # id: Select a single SupplierDocument by its ID
  • # exact: Exact match query arguments for SupplierDocument
  • # fuzzy: Fuzzy match query arguments for SupplierDocument
  • # range: Range match query arguments for SupplierDocument
  • # options: Query options for SupplierDocument
  • SupplierDocuments(
  • id: Int,
  • exact: SupplierDocument_Exact,
  • fuzzy: SupplierDocument_Fuzzy,
  • range: SupplierDocument_Range,
  • options: SupplierDocument_Options
  • ): [SupplierDocument]
  • # A list of Suppliers
  • #
  • # Arguments
  • # id: Select a single Supplier by its ID
  • # exact: Exact match query arguments for Supplier
  • # fuzzy: Fuzzy match query arguments for Supplier
  • # range: Range match query arguments for Supplier
  • # options: Query options for Supplier
  • Suppliers(
  • id: Int,
  • exact: Supplier_Exact,
  • fuzzy: Supplier_Fuzzy,
  • range: Supplier_Range,
  • options: Supplier_Options
  • ): [Supplier]
  • # A list of system messages.
  • #
  • # Arguments
  • # version: [Not documented]
  • SystemMessages(version: String): [String]
  • # A list of Tags
  • #
  • # Arguments
  • # id: Select a single Tag by its ID
  • # exact: Exact match query arguments for Tag
  • # fuzzy: Fuzzy match query arguments for Tag
  • # range: Range match query arguments for Tag
  • # options: Query options for Tag
  • Tags(
  • id: Int,
  • exact: Tag_Exact,
  • fuzzy: Tag_Fuzzy,
  • range: Tag_Range,
  • options: Tag_Options
  • ): [Tag]
  • # A list of TaskAssets
  • #
  • # Arguments
  • # id: Select a single TaskAsset by its ID
  • # exact: Exact match query arguments for TaskAsset
  • # fuzzy: Fuzzy match query arguments for TaskAsset
  • # range: Range match query arguments for TaskAsset
  • # options: Query options for TaskAsset
  • TaskAssets(
  • id: Int,
  • exact: TaskAsset_Exact,
  • fuzzy: TaskAsset_Fuzzy,
  • range: TaskAsset_Range,
  • options: TaskAsset_Options
  • ): [TaskAsset]
  • # A list of Task Groups
  • #
  • # Arguments
  • # id: Select a single TaskGroup by its ID
  • # exact: Exact match query arguments for TaskGroup
  • # fuzzy: Fuzzy match query arguments for TaskGroup
  • # range: Range match query arguments for TaskGroup
  • # options: Query options for TaskGroup
  • TaskGroups(
  • id: Int,
  • exact: TaskGroup_Exact,
  • fuzzy: TaskGroup_Fuzzy,
  • range: TaskGroup_Range,
  • options: TaskGroup_Options
  • ): [TaskGroup]
  • # A list of Tasks
  • #
  • # Arguments
  • # id: Select a single Task by its ID
  • # exact: Exact match query arguments for Task
  • # fuzzy: Fuzzy match query arguments for Task
  • # range: Range match query arguments for Task
  • # options: Query options for Task
  • Tasks(
  • id: Int,
  • exact: Task_Exact,
  • fuzzy: Task_Fuzzy,
  • range: Task_Range,
  • options: Task_Options
  • ): [Task]
  • # A list of timesheet activities
  • #
  • # Arguments
  • # id: Select a single TimesheetActivity by its ID
  • # exact: Exact match query arguments for TimesheetActivity
  • # fuzzy: Fuzzy match query arguments for TimesheetActivity
  • # range: Range match query arguments for TimesheetActivity
  • # options: Query options for TimesheetActivity
  • TimesheetActivities(
  • id: Int,
  • exact: TimesheetActivity_Exact,
  • fuzzy: TimesheetActivity_Fuzzy,
  • range: TimesheetActivity_Range,
  • options: TimesheetActivity_Options
  • ): [TimesheetActivity]
  • # A list of timesheet charge items
  • #
  • # Arguments
  • # id: Select a single TimesheetChargeItem by its ID
  • # exact: Exact match query arguments for TimesheetChargeItem
  • # fuzzy: Fuzzy match query arguments for TimesheetChargeItem
  • # range: Range match query arguments for TimesheetChargeItem
  • # options: Query options for TimesheetChargeItem
  • TimesheetChargeItems(
  • id: Int,
  • exact: TimesheetChargeItem_Exact,
  • fuzzy: TimesheetChargeItem_Fuzzy,
  • range: TimesheetChargeItem_Range,
  • options: TimesheetChargeItem_Options
  • ): [TimesheetChargeItem]
  • # A list of timesheet pay items
  • #
  • # Arguments
  • # id: Select a single TimesheetPayItem by its ID
  • # exact: Exact match query arguments for TimesheetPayItem
  • # fuzzy: Fuzzy match query arguments for TimesheetPayItem
  • # range: Range match query arguments for TimesheetPayItem
  • # options: Query options for TimesheetPayItem
  • TimesheetPayItems(
  • id: Int,
  • exact: TimesheetPayItem_Exact,
  • fuzzy: TimesheetPayItem_Fuzzy,
  • range: TimesheetPayItem_Range,
  • options: TimesheetPayItem_Options
  • ): [TimesheetPayItem]
  • # A list of Timesheets
  • #
  • # Arguments
  • # id: Select a single Timesheet by its ID
  • # exact: Exact match query arguments for Timesheet
  • # fuzzy: Fuzzy match query arguments for Timesheet
  • # range: Range match query arguments for Timesheet
  • # options: Query options for Timesheet
  • Timesheets(
  • id: Int,
  • exact: Timesheet_Exact,
  • fuzzy: Timesheet_Fuzzy,
  • range: Timesheet_Range,
  • options: Timesheet_Options
  • ): [Timesheet]
  • # A list of User Competencies
  • #
  • # Arguments
  • # id: Select a single UserCompetency by its ID
  • # exact: Exact match query arguments for UserCompetency
  • # fuzzy: Fuzzy match query arguments for UserCompetency
  • # range: Range match query arguments for UserCompetency
  • # options: Query options for UserCompetency
  • UserCompetencies(
  • id: Int,
  • exact: UserCompetency_Exact,
  • fuzzy: UserCompetency_Fuzzy,
  • range: UserCompetency_Range,
  • options: UserCompetency_Options
  • ): [UserCompetency]
  • # A list of User Inductions
  • #
  • # Arguments
  • # id: Select a single UserInduction by its ID
  • # exact: Exact match query arguments for UserInduction
  • # fuzzy: Fuzzy match query arguments for UserInduction
  • # range: Range match query arguments for UserInduction
  • # options: Query options for UserInduction
  • UserInductions(
  • id: Int,
  • exact: UserInduction_Exact,
  • fuzzy: UserInduction_Fuzzy,
  • range: UserInduction_Range,
  • options: UserInduction_Options
  • ): [UserInduction]
  • # A list of UserPreferences
  • #
  • # Arguments
  • # id: Select a single UserPreference by its ID
  • # exact: Exact match query arguments for UserPreference
  • # fuzzy: Fuzzy match query arguments for UserPreference
  • # range: Range match query arguments for UserPreference
  • # options: Query options for UserPreference
  • UserPreferences(
  • id: Int,
  • exact: UserPreference_Exact,
  • fuzzy: UserPreference_Fuzzy,
  • range: UserPreference_Range,
  • options: UserPreference_Options
  • ): [UserPreference]
  • # A list of User Roles
  • #
  • # Arguments
  • # id: Select a single UserRole by its ID
  • # exact: Exact match query arguments for UserRole
  • # fuzzy: Fuzzy match query arguments for UserRole
  • # range: Range match query arguments for UserRole
  • # options: Query options for UserRole
  • UserRoles(
  • id: Int,
  • exact: UserRole_Exact,
  • fuzzy: UserRole_Fuzzy,
  • range: UserRole_Range,
  • options: UserRole_Options
  • ): [UserRole]
  • # A list of Users
  • #
  • # Arguments
  • # id: Select a single User by its ID
  • # exact: Exact match query arguments for User
  • # fuzzy: Fuzzy match query arguments for User
  • # range: Range match query arguments for User
  • # options: Query options for User
  • Users(
  • id: Int,
  • exact: User_Exact,
  • fuzzy: User_Fuzzy,
  • range: User_Range,
  • options: User_Options
  • ): [User]
  • # A list of UserSkills
  • #
  • # Arguments
  • # id: Select a single UserSkill by its ID
  • # exact: Exact match query arguments for UserSkill
  • # fuzzy: Fuzzy match query arguments for UserSkill
  • # range: Range match query arguments for UserSkill
  • # options: Query options for UserSkill
  • UserSkills(
  • id: Int,
  • exact: UserSkill_Exact,
  • fuzzy: UserSkill_Fuzzy,
  • range: UserSkill_Range,
  • options: UserSkill_Options
  • ): [UserSkill]
  • # A list of User Types
  • #
  • # Arguments
  • # id: Select a single UserType by its ID
  • # exact: Exact match query arguments for UserType
  • # fuzzy: Fuzzy match query arguments for UserType
  • # range: Range match query arguments for UserType
  • # options: Query options for UserType
  • UserTypes(
  • id: Int,
  • exact: UserType_Exact,
  • fuzzy: UserType_Fuzzy,
  • range: UserType_Range,
  • options: UserType_Options
  • ): [UserType]
  • # A list of module-level webhooks
  • #
  • # Arguments
  • # id: Select a single Webhook by its ID
  • # exact: Exact match query arguments for Webhook
  • # fuzzy: Fuzzy match query arguments for Webhook
  • # range: Range match query arguments for Webhook
  • # options: Query options for Webhook
  • Webhooks(
  • id: Int,
  • exact: Webhook_Exact,
  • fuzzy: Webhook_Fuzzy,
  • range: Webhook_Range,
  • options: Webhook_Options
  • ): [Webhook]
  • # A list of WebhookModules
  • #
  • # Arguments
  • # id: Select a single WebhookModule by its ID
  • # exact: Exact match query arguments for WebhookModule
  • # fuzzy: Fuzzy match query arguments for WebhookModule
  • # range: Range match query arguments for WebhookModule
  • # options: Query options for WebhookModule
  • WebhookModules(
  • id: Int,
  • exact: WebhookModule_Exact,
  • fuzzy: WebhookModule_Fuzzy,
  • range: WebhookModule_Range,
  • options: WebhookModule_Options
  • ): [WebhookModule]
  • # A list of webhook transactions.
  • #
  • # Arguments
  • # module: [Not documented]
  • # method: [Not documented]
  • # entity: [Not documented]
  • WebhookTransactions(
  • module: String!,
  • method: String!,
  • entity: Int
  • ): [WebhookTransaction]
  • # A list of work item codes
  • #
  • # Arguments
  • # id: Select a single WorkItem by its ID
  • # exact: Exact match query arguments for WorkItem
  • # fuzzy: Fuzzy match query arguments for WorkItem
  • # range: Range match query arguments for WorkItem
  • # options: Query options for WorkItem
  • WorkItems(
  • id: Int,
  • exact: WorkItem_Exact,
  • fuzzy: WorkItem_Fuzzy,
  • range: WorkItem_Range,
  • options: WorkItem_Options
  • ): [WorkItem]
  • }

link Require by

This element is not required by anyone