Docker file for my project at https://gitlab.com/Darglaedr2/graphqlexemple
161
To run : docker run -p 8080:8080 hoang/graphqlexemple To test : http://localhost:8080/?query={products{ id, label, price }}
Expected values:
{ "data": { "products": [ { "id": "1", "label": "Jacket", "price": 2 }, { "id": "2", "label": "T-shirt", "price": 4.5 }, { "id": "3", "label": "Jeans", "price": 11.2 } ] } }
Content type
Image
Digest
Size
3.6 MB
Last updated
almost 8 years ago
docker pull darglaedr/graphqlexemple