python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Custom GraphQL Error types for Validation
Is this possible to set custom GraphQL Error types for at least BAD_USER_INPUT code?
On the backend I've got an error type something like this:
throw {
type: 'ValidationError',
code: 422,
...

user16373392
Votes: 0
Answers: 1
Graphql throwing "The repeat()-traversal was not defined" on query
I am using neptune and graphql and I am getting this error:
"Server error: {\"detailedMessage\":\"The repeat()-traversal was not defined: RepeatStep(until([NeptuneMemoryTrackerStep...

Morgan Smith
Votes: 0
Answers: 1
graphql: single mutation or one mutation per type
I have a GraphQL schema like this:
type User {
id: ID
name: String
email: String
addresses: [UserAddress]
}
type UserAddress {
id: ID
city: String
country: String
}
I always have doubts abo...
kurtko
Votes: 0
Answers: 1