techPartnerProjectCreate
Create the Project The techPartnerProjectCreate mutation accepts the following input: TechPartnerProjectCreateInput
An example of the request is as follows:
mutation {
techPartnerProjectCreate(
id: "xyz-guide-id"
name: "project name"
description: "project description"
)
}
An example of the response is as follows:
{
"data": {
"techPartnerProjectCreate": {
id: "xyz-project-id"
name: "project name"
description: "project description"
}
}
}
techPartnerProjectCreate(
input: TechPartnerProjectCreateInput!
): TechPartnerProject
Arguments
techPartnerProjectCreate.input ● TechPartnerProjectCreateInput! non-null input partner-portal
Type
TechPartnerProject object partner-portal
Was this topic helpful?