super-graph/config/allow.list

276 lines
2.9 KiB
Plaintext
Raw Normal View History

2019-07-29 07:49:48 +02:00
# http://localhost:8080/
2019-07-29 07:13:33 +02:00
2019-10-15 08:30:19 +02:00
variables {
"data": [
{
"name": "Protect Ya Neck",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Enter the Wu-Tang",
"created_at": "now",
"updated_at": "now"
}
]
}
mutation {
products(insert: $data) {
id
name
}
}
variables {
"update": {
"name": "Wu-Tang",
"description": "No description needed"
},
"product_id": 1
}
mutation {
products(id: $product_id, update: $update) {
2019-10-01 06:00:15 +02:00
id
name
description
2019-10-01 06:00:15 +02:00
}
}
2019-10-15 08:30:19 +02:00
query {
users {
id
email
picture: avatar
products(limit: 2, where: {price: {gt: 10}}) {
id
name
description
}
}
}
2019-09-06 06:34:23 +02:00
variables {
2019-10-15 08:30:19 +02:00
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
2019-07-29 07:13:33 +02:00
}
2019-09-06 06:34:23 +02:00
mutation {
2019-10-15 08:30:19 +02:00
products(id: 199, delete: true) {
id
name
}
}
variables {
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
}
2019-10-15 08:30:19 +02:00
query {
products {
2019-07-29 07:13:33 +02:00
id
name
}
}
variables {
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
}
2019-10-01 06:00:15 +02:00
query {
products {
2019-10-01 06:00:15 +02:00
id
name
2019-10-15 08:30:19 +02:00
user {
email
}
}
}
variables {
2019-10-15 08:30:19 +02:00
"data": {
"product_id": 5
}
}
mutation {
2019-10-15 08:30:19 +02:00
products(id: $product_id, delete: true) {
id
name
2019-10-01 06:00:15 +02:00
}
}
2019-09-05 06:09:56 +02:00
variables {
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
2019-09-05 06:09:56 +02:00
}
query {
2019-10-15 08:30:19 +02:00
products {
2019-09-05 06:09:56 +02:00
id
2019-09-06 06:34:23 +02:00
name
2019-10-15 08:30:19 +02:00
price
users {
email
}
}
}
2019-09-26 06:35:31 +02:00
variables {
"data": {
"email": "gfk@myspace.com",
"full_name": "Ghostface Killah",
"created_at": "now",
"updated_at": "now"
}
2019-09-26 06:35:31 +02:00
}
mutation {
user(insert: $data) {
id
}
}
2019-10-15 08:30:19 +02:00
variables {
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
}
query {
2019-10-15 08:30:19 +02:00
products {
id
2019-10-15 08:30:19 +02:00
name
users {
email
}
}
}
2019-10-15 08:30:19 +02:00
query {
me {
id
email
full_name
}
}
variables {
"update": {
"name": "Helloo",
"description": "World \u003c\u003e"
},
"user": 123
}
mutation {
products(id: 5, update: $update) {
id
name
description
}
}
variables {
"data": [
{
2019-10-15 08:30:19 +02:00
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
2019-10-15 08:30:19 +02:00
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
}
2019-10-15 08:30:19 +02:00
query {
product {
id
name
}
}
variables {
"data": [
{
"name": "Gumbo1",
"created_at": "now",
"updated_at": "now"
},
{
"name": "Gumbo2",
"created_at": "now",
"updated_at": "now"
}
]
}
query {
products {
2019-09-06 06:34:23 +02:00
id
2019-09-26 06:35:31 +02:00
name
2019-10-15 08:30:19 +02:00
description
users {
email
}
2019-09-06 06:34:23 +02:00
}
}
2019-10-15 08:30:19 +02:00