-
-
Save lonerz/034acc29080d057b7a990a22732aafb4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print(''' | |
schema { | |
query: RootSchemaQuery | |
} | |
''') | |
N = 5000 | |
A = 100 | |
print('type RootSchemaQuery {') | |
for i in range(N): | |
print(f' Type{i}: [Type{i}]') | |
print('}') | |
print() | |
for i in range(N): | |
print(f'type Type{i} {{') | |
for j in range(A): | |
print(f' Field{j}: Int') | |
print('}') | |
print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment