Skip to content

Instantly share code, notes, and snippets.

@lonerz
Created August 7, 2020 20:02
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