Supplier Creation
Create a supplier through the GraphQL API or via Jungle's supplier page.
- Sign in via the Jungle web login page
- Navigate to the supplier page
Jungle Web
To create a supplier, select the supplier page and click the "+Add supplier" button. Fill in the form and ensure all required fields are completed before selecting "Submit". Access the supplier by finding and selecting it from the supplier list.
GraphQL
To create a supplier on GraphQL, use the following mutation and adjust the "name" field to reflect the supplier you're trying to create.
mutation CreateSupplier
{
supplierCreate(input:{name:"Jungle"}){
ok
...on MutationSuccess{
objects{
id
}
}
}
}
Comments
0 comments
Please sign in to leave a comment.