super-graph/config/allow.list

39 lines
333 B
Plaintext
Raw Normal View History

2019-07-29 07:13:33 +02:00
# http://localhost:808
query {
me {
id
full_name
}
}
query {
customers {
id
email
payments {
customer_id
amount
billing_details
}
}
}
# http://localhost:8080/
query {
products(id: $PRODUCT_ID) {
name
}
}
query {
products(id: $PRODUCT_ID) {
name
image
}
}