Skip to content

Commit

Permalink
Fix repo name prefix in readme
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Martín <[email protected]>
  • Loading branch information
carlosms committed Sep 17, 2018
1 parent 5373472 commit ad4bef1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ You can use the raw functionality offered by Babelfish using `uastRaw`. Continue

```graphql
{
repository(id: "/opt/repos/gitbase-web") {
repository(id: "gitbase-web") {
id
refs(name: "HEAD") {
commit {
Expand All @@ -119,7 +119,7 @@ You can use the raw functionality offered by Babelfish using `uastRaw`. Continue

```graphql
{
repository(id: "/opt/repos/gitbase-web") {
repository(id: "gitbase-web") {
id
refs(name: "HEAD") {
commit {
Expand All @@ -143,7 +143,7 @@ _Note_: each children level has to be queried explicitly. Although you cannot qu

```graphql
{
repository(id: "/opt/repos/gitbase-web") {
repository(id: "gitbase-web") {
id
refs(name: "HEAD") {
commit {
Expand Down Expand Up @@ -193,7 +193,7 @@ Instead of setting a filter for each level of the query, you can use the `flat`
```graphql
# All the imports done in App.js
{
repository(id: "/opt/repos/gitbase-web") {
repository(id: "gitbase-web") {
id
refs(name: "HEAD") {
commit {
Expand All @@ -215,7 +215,7 @@ Instead of setting a filter for each level of the query, you can use the `flat`

```graphql
{
repository(id: "/opt/repos/gitbase-web") {
repository(id: "gitbase-web") {
id
refs(name: "HEAD") {
commit {
Expand Down

0 comments on commit ad4bef1

Please sign in to comment.