Skip to content

prisma-hackathon/dogs-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL Server Example

This example shows how to implement a GraphQL server with TypeScript based on Photon.js, graphql-yoga and GraphQL Nexus.

Edit graphql

How to use

1. Download example & install dependencies

Clone the prisma2 branch of this repository:

git clone --single-branch --branch prisma2 [email protected]:prisma/prisma-examples.git

Install Node dependencies:

cd prisma-examples/typescript/graphql
npm install

2. Run Prisma's development mode

Learn more about the development mode

Prisma's development mode watches your Prisma schema on the file system. Whenever there's a change in the schema, the Prisma Framework CLI performs two major tasks in the background:

  • map the Prisma schema to your database schema (i.e., perform a schema migration in the database)
  • regenerate the Photon.js database client based on the new Prisma schema

It also runs a web server to host Prisma Studio, typically at http://localhost:5555.

In this case, the command also creates a new SQLite database file at ./prisma/dev.db since that didn't exist in the project yet.

Start the development mode with the following command:

npx prisma2 dev

Note: You're using npx to run the Prisma Framework CLI that's listed as a development dependency in package.json. Alternatively, you can install the CLI globally using npm install -g prisma2. When using Yarn, you can run: yarn prisma2 dev.

You can now open Prisma Studio. Open your browser and navigate to the URL displayed by the CLI output (typically at http://localhost:5555).

Alternative: Connect to your own database

Prisma supports MySQL and PostgreSQL at the moment. If you would like to connect to your own database, you can do so by specifying a different data source in the Prisma schema file.

For a MySQL provider:

datasource mysql {
    provider = "mysql"
    url      = "mysql://johndoe:secret42@localhost:3306/mydatabase"
}

OR

For a PostgreSQL provider:

datasource postgresql {
  provider = "postgresql"
  url      = "postgresql://johndoe:secret42@localhost:5432/mydatabase?schema=public"
}

Note: In the above example connection strings, johndoe would be the username to your database, secret42 the password, mydatabase the name of your database, and public the PostgreSQL schema.

Then to migrate your database schema, run:

npx prisma2 lift save --name 'init'
npx prisma2 lift up

3. Seed the database with test data

The seed script from package.json contains some code to seed the database with test data. Execute it with the following command:

npm run seed

Note: You need to execute the command in a new terminal window/tab, since the development mode is taking up your currrent terminal session.

4. Start the GraphQL server

Launch your GraphQL server with this command:

npm run dev

Navigate to http://localhost:4000 in your browser to explore the API of your GraphQL server in a GraphQL Playground.

5. Using the GraphQL API

The schema that specifies the API operations of your GraphQL server is defined in ./src/schema.graphql. Below are a number of operations that you can send to the API using the GraphQL Playground.

Feel free to adjust any operation by adding or removing fields. The GraphQL Playground helps you with its auto-completion and query validation features.

Retrieve all published posts and their authors

query {
  feed {
    id
    title
    content
    published
    author {
      id
      name
      email
    }
  }
}
See more API operations

Create a new user

mutation {
  signupUser(
    data: {
      name: "Sarah"
      email: "[email protected]"
    }
  ) {
    id
  }
}

Create a new draft

mutation {
  createDraft(
    title: "Join the Prisma Slack"
    content: "https://slack.prisma.io"
    authorEmail: "[email protected]"
  ) {
    id
    published
  }
}

Publish an existing draft

mutation {
  publish(id: "__POST_ID__") {
    id
    published
  }
}

Note: You need to replace the __POST_ID__-placeholder with an actual id from a Post item. You can find one e.g. using the filterPosts-query.

Search for posts with a specific title or content

{
  filterPosts(searchString: "graphql") {
    id
    title
    content
    published
    author {
      id
      name
      email
    }
  }
}

Retrieve a single post

{
  post({
    where: { id: "__POST_ID__" }
  }) {
    id
    title
    content
    published
    author {
      id
      name
      email
    }
  }
}

Note: You need to replace the __POST_ID__-placeholder with an actual id from a Post item. You can find one e.g. using the filterPosts-query.

Delete a post

mutation {
  deleteOnePost(where: {id: "__POST_ID__"})
  {
    id
  }
}

Note: You need to replace the __POST_ID__-placeholder with an actual id from a Post item. You can find one e.g. using the filterPosts-query.

6. Changing the GraphQL schema

To make changes to the GraphQL schema, you need to manipulate the Query and Mutation types that are defined in schema.ts.

Note that the dev script also starts a development server that automatically updates your schema every time you save a file. This way, the auto-generated GraphQL schema updates whenever you make changes in to the Query or Mutation types inside your TypeScript code.

Next steps

Use Lift to persist the schema migration

The migrations that were generated throughout the development mode are development migrations that are thrown away once the desired schema has been found. In that case, you need to persist the schema using the lift subcommands.

To persist your schema migration with Lift, run:

npx prisma2 lift save --name 'init'
npx prisma2 lift up

The first command, lift save, stores a number of migration files on the file sytem with details about the migration (such as the required migration steps and SQL operations), this doesn't yet affect the database. It also deletes the old development migrations. The second command, lift up, actually performs the schema migration against the database.

Generate Photon.js with the CLI

Sometimes, e.g. in CI/CD environments, it can be helpful to generate Photon.js with a CLI command. This can be done with the prisma2 generate command. If you want to run it in this project, you need to prepend npx again:

npx prisma2 generate

More things to explore

About

A small GraphQL API to play with Photon and Nexus

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published