Waiting for engine...
Skip to main content

techPartnerProject

techPartnerProject query The techPartnerProject query accepts the following input: ID

An example of the request is as follows:

query {
techPartnerProject(id: "c35db7fe-f7b7-4f6e-9e1b-a245")
{
id
title
subtitle
status
createdBy
createdByAccountId
createdDate
lastModifiedDate
lastModifiedBy
steps
{
id
title
status
tasks {
id
title
status
}
}
}
}

An example of the response is as follows:


{
"data":
{
"techPartnerProject":
{
"id": "c35db7fe-f7b7-4f6e-9e1b-a245",
"title": "testTitle",
"subtitle": "testSubTitle",
"status": "COMPLETED",
"createdBy": "admin@boomi.com",
"createdByAccountId": "boomi-internal",
"createdDate": "2024-07-23T07:22:52.884Z",
"lastModifiedDate": null,
"lastModifiedBy": null,
"steps":
[
{
"id": "edda68f0-701d-44fd-8784-d23c",
"title": "Step One",
"status": "INCOMPLETE",
"tasks": [
{
"id": "f1686c04-4ed8-4111-ab2c-37a4",
"title": null,
"status": null
}
]
},
{
"id": "b558a466-4ded-4d1a-96b6-efae",
"title": "Step Three",
"status": "COMPLETED",
"tasks": [
{
"id": "3b077529-8ca0-4b95-9a33-4fef",
"title": null,
"status": "COMPLETED"
}
]
}
]
}
}
}

techPartnerProject(
id: ID!
): TechPartnerProject

Arguments

techPartnerProject.id ● ID! non-null scalar miscellaneous

Type

TechPartnerProject object partner-portal

On this Page