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