diff --git a/reshape/fields/starwars/index.graphql b/reshape/fields/starwars/index.graphql index c609e1a..da2e142 100644 --- a/reshape/fields/starwars/index.graphql +++ b/reshape/fields/starwars/index.graphql @@ -1,5 +1,5 @@ # Imported by -# stepzen import graphql https://chester.stepzen.net/examples/starwars/__graphql --name=starwars +# stepzen import graphql https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/graphql --name=starwars # enum Episode { "Released in 1977." @@ -61,7 +61,7 @@ executing the query’s top level selection set with the `Query` root object typ type Query { droid("id of the droid" id: ID!): Droid @graphql( - endpoint: "https://chester.stepzen.net/examples/starwars/__graphql" + endpoint: "https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql" ) hero( """ @@ -71,10 +71,10 @@ type Query { episode: Episode ): Character @graphql( - endpoint: "https://chester.stepzen.net/examples/starwars/__graphql" + endpoint: "https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql" ) human("id of the human" id: ID!): Human @graphql( - endpoint: "https://chester.stepzen.net/examples/starwars/__graphql" + endpoint: "https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql" ) } diff --git a/reshape/subset/README.md b/reshape/subset/README.md index b65c43c..fb90ed6 100644 --- a/reshape/subset/README.md +++ b/reshape/subset/README.md @@ -3,7 +3,7 @@ ## `@graphql` [`starwars.graphql`](starwars.graphql) is a strict subset of the schema exposed by the example endpoint -`https://chester.stepzen.net/examples/starwars/__graphql` demonstrating that there's no need +`https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql` demonstrating that there's no need to include all the types and fields of the backend endpoint. In this case only information about human characters (type `Human`) is exposed @@ -12,7 +12,7 @@ through the root operation type field `Query.human`. ## `@rest` [`version.graphql`](version.graphql) is a strict subset of a schema that matches the StepZen -service version REST API `https://account.stepzen.net/version`. +service version REST API `https://account.domain/version`. A GraphQL type matching the **full** REST API is: diff --git a/reshape/subset/starwars.graphql b/reshape/subset/starwars.graphql index 2c92e57..0b1c132 100644 --- a/reshape/subset/starwars.graphql +++ b/reshape/subset/starwars.graphql @@ -1,5 +1,5 @@ # Based upon an import generated by -# stepzen import graphql https://chester.stepzen.net/examples/starwars/__graphql +# stepzen import graphql https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql # # and then manually subsetted to remove # @@ -40,6 +40,6 @@ type Human implements Character { type Query { human("id of the human" id: ID!): Human @graphql( - endpoint: "https://chester.stepzen.net/examples/starwars/__graphql" + endpoint: "https://stepzen-chester.us-east-a.ibm.stepzen.net/examples/starwars/__graphql" ) }