-
I have a project with a lot of data types, around 1000. The requirement I'm trying to meet is that there is a query per type. But I cannot put more than 255 in I've tried splitting the query functions among other I have not found a path around this. Is this even possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Of course posting about the problem made me find the answer. You have to use |
Beta Was this translation helpful? Give feedback.
Of course posting about the problem made me find the answer. You have to use
extend type Query {...}
for the additional queries in separate files, and I no longer had the limit of 255 when I did this.