Andrea Giurgola
Andrea Giurgola
Hey! I'll try implementing this.
Oh, I see! The problem is that I can't use an integer as a field's name in a GraphQL type. I tried searching on the web, but I couldn't find...
Ok, checked GraphQL Specification, and can confirm a field's name must be a string.  Can't use single quote or double-quote either.  I just need to thing a solution...
Also if you could help me update [spec.js](https://github.com/slothpixel/core/blob/master/routes/spec.js) while I try to find a solution to this, that would be amazing :D
The problem is that whenever I try to save it, it saves as string. But whenever I get it, it converts to number.
I think I may have found a solution: just add a string of characters before the ID and it will get picked as a string overall. But this should be...