Skip to content

Latest commit

 

History

History

with-rest

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

StepZen Example: with-rest

Introduction

This project builds a GraphQL API connected to your REST API using StepZen. We will use the @rest directive to generate our GraphQL schema.

Getting Started

You'll need to create a StepZen account first. Once you've got that set up, git clone this repository onto your machine and open the working directory:

git clone https://github.com/stepzen-dev/examples.git
cd examples/with-rest

Before you can run this example, you need to have a REST API. In this example you can use the mocked REST API from StepZen https://introspection.apis.stepzen.com is used.

Run StepZen

Open your terminal and install the StepZen CLI:

npm install -g stepzen

You need to login here using the command:

stepzen login

After you've installed the CLI and logged in, run:

stepzen start

A proxy of the GraphiQL playground becomes available at http://localhost/5001 (in example http://localhost:5001/api/with-rest), which you can use to explore the GraphQL API. Also, the endpoint at which your GraphQL API is deployed gets logged in the terminal. You can query your GraphQL API from any application, browser, or IDE by providing the API Key linked to your account.

Learn More

You can learn more in the StepZen documentation. Questions? Head over to Discord or GitHub Discussions to ask questions.