-
Hello I'm trying to setup the Multi-vendor plugin. I have installed it, and can see the However, when I try to run the example mutation in the admin-api (see below) I get the following error: {
"error": {
"errors": [
{
"message": "Cannot query field \"registerNewSeller\" on type \"Mutation\".",
"locations": [
{
"line": 2,
"column": 3
}
],
"extensions": {
"http": {
"status": 400,
"headers": {}
},
"code": "GRAPHQL_VALIDATION_FAILED"
}
}
]
} I'm using vendure-core 2.1.1. Thanks mutation RegisterSeller {
registerNewSeller(input: {
shopName: "Bob's Parts",
seller: {
firstName: "Bob"
lastName: "Dobalina"
emailAddress: "[email protected]"
password: "test",
}
}) {
id
code
token
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
magick93
Oct 30, 2023
Replies: 1 comment
-
Ah, I see this mutation works on the shop-api, not admin-api. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
magick93
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah, I see this mutation works on the shop-api, not admin-api.