I have a GraphQL-schema that has a union declaration that already has a lot of types, e.g.:
union SectionUnion = SectionForm | Section2 | Section3 | Section4 | Section5
I know that lots more sections are coming (not added yet) and at some point the union declaration will become unreadable, as it would be a very long line.
Is there a way to put the types in multiple lines, one type per line?