Skip to content

Instantly share code, notes, and snippets.

@lonerz
Created August 7, 2020 20:02
Show Gist options
  • Save lonerz/034acc29080d057b7a990a22732aafb4 to your computer and use it in GitHub Desktop.
Save lonerz/034acc29080d057b7a990a22732aafb4 to your computer and use it in GitHub Desktop.
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