Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created October 8, 2020 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YonatanKra/f2d1b7893b54b1368317d0a75eeef437 to your computer and use it in GitHub Desktop.
Save YonatanKra/f2d1b7893b54b1368317d0a75eeef437 to your computer and use it in GitHub Desktop.
AskQL playground values
export const customValues: { [key: string]: any } = {
clientNames: ['a', 'b', 'c', 'd', 'e', 'f', 'g'],
hello: 'Hi! This is a AskVM server running on localhost',
revPerClient: {
a: 426,
b: 35,
c: 446,
d: 246,
e: 133,
f: 136,
g: 53,
},
firstName: 'Luke',
middleName: 'LukeLuke',
lastName: 'Skywalker',
fullName: 'Luke Skywalker',
parents: [
{
firstName: 'Padmé',
lastName: 'Amidala',
},
{
firstName: 'Anakin',
lastName: 'Skywalker',
},
],
friends: [
{
id: 0,
firstName: 'Padmé',
lastName: 'Amidala',
},
{
id: 1,
firstName: 'Anakin',
lastName: 'Skywalker',
},
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment