In the graphql api that I'm using, IDs can be everything (string, numbers,...) but the generator consider that it's always Guid. So when it's not in a true guid I have errors :
{"Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)."}
Hi,
In the graphql api that I'm using, IDs can be everything (string, numbers,...) but the generator consider that it's always Guid. So when it's not in a true guid I have errors :
{"Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)."}
Here you can see an exemple on the playground of the api
How can I change the type of IDs' so it's string or object and not Guid ?
Thanks a lot for this awesome lib !