Run npm install
and npm start
, and then navigate to localhost:4000
to run queries.
If you make any changes to the prisma/datamodel.prisma
or prisma/prisma.yml
, run prisma deploy
and prisma generate
.
Before running any queries, create a user (see the Authentication section below) or, at least, add the following HTTP header to your POST request:
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiJjanllcjNlbjdlcnMxMGIzNnYzeXdscTEwIiwiaWF0IjoxNTYzODIxNzQ1fQ.dMwJM6jjmzBu5Aq9QmfXrAkMR20tQVxGHJ9fXC8DKYE"
Run the following mutation query to create a user and get an authentication token. Copy the token from your response and include it as a header in any requests in order to post, update, or delete links.
mutation {
signup(
name: "Abby"
email: "abby@chao.com"
password: "graphql"
) {
token
user {
id
}
}
}
See below for sample queries, mutations, and subscriptions. For more root fields, check the schema.
This query illustrates 3 root fields available on the API: info, feed, link. (Choose an actual ID from the database to make the last one work.)
query {
info
feed {
id
url
description
}
link(id:"12345") {
id
url
description
}
}
These illustrate the 3 mutations available on the API: post, updateLink, deleteLink. (Update IDs to make each query work.)
mutation {
post(
url: "www.prisma.io"
description: "Prisma replaces traditional ORMs"
) { id, url }
}
mutation {
updateLink(
id:"12345"
url: "https://www.google.com"
description: "A search engine"
) {
id
url
description
}
}
mutation {
deleteLink (id: "12345") {
id
url
description
}
}
subscription {
newLink {
id
url
description
postedBy {
id
name
email
}
}
}
Your Prisma endpoint is live:
HTTP: https://eu1.prisma.sh/abby-chao-84702d/graphql-prisma/dev
WS: wss://eu1.prisma.sh/abby-chao-84702d/graphql-prisma/dev
You can view & edit your data here:
Prisma Admin: https://eu1.prisma.sh/abby-chao-84702d/graphql-prisma/dev/_admin