Skip to content

Commit 079631d

Browse files
update import to local path
1 parent ce0f021 commit 079631d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+119
-119
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# graphql-go [![Sourcegraph](https://sourcegraph.com/github.com/agungdwiprasetyo/graphql-go/-/badge.svg)](https://sourcegraph.com/github.com/agungdwiprasetyo/graphql-go?badge) [![Build Status](https://semaphoreci.com/api/v1/graph-gophers/graphql-go/branches/master/badge.svg)](https://semaphoreci.com/graph-gophers/graphql-go) [![GoDoc](https://godoc.org/github.com/agungdwiprasetyo/graphql-go?status.svg)](https://godoc.org/github.com/agungdwiprasetyo/graphql-go)
1+
# graphql-go [![Sourcegraph](https://sourcegraph.com/github.com/golangid/graphql-go/-/badge.svg)](https://sourcegraph.com/github.com/golangid/graphql-go?badge) [![Build Status](https://semaphoreci.com/api/v1/graph-gophers/graphql-go/branches/master/badge.svg)](https://semaphoreci.com/graph-gophers/graphql-go) [![GoDoc](https://godoc.org/github.com/golangid/graphql-go?status.svg)](https://godoc.org/github.com/golangid/graphql-go)
22

33
<p align="center"><img src="docs/img/logo.png" width="300"></p>
44

@@ -21,7 +21,7 @@ safe for production use.
2121

2222
## Roadmap
2323

24-
We're trying out the GitHub Project feature to manage `graphql-go`'s [development roadmap](https://github.com/agungdwiprasetyo/graphql-go/projects/1).
24+
We're trying out the GitHub Project feature to manage `graphql-go`'s [development roadmap](https://github.com/golangid/graphql-go/projects/1).
2525
Feedback is welcome and appreciated.
2626

2727
## (Some) Documentation
@@ -35,8 +35,8 @@ import (
3535
"log"
3636
"net/http"
3737

38-
graphql "github.com/agungdwiprasetyo/graphql-go"
39-
"github.com/agungdwiprasetyo/graphql-go/relay"
38+
graphql "github.com/golangid/graphql-go"
39+
"github.com/golangid/graphql-go/relay"
4040
)
4141

4242
type query struct{}

example/caching/caching.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"time"
66

7-
"github.com/agungdwiprasetyo/graphql-go/example/caching/cache"
7+
"github.com/golangid/graphql-go/example/caching/cache"
88
)
99

1010
const Schema = `

example/caching/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"log"
77
"net/http"
88

9-
"github.com/agungdwiprasetyo/graphql-go"
10-
"github.com/agungdwiprasetyo/graphql-go/example/caching"
11-
"github.com/agungdwiprasetyo/graphql-go/example/caching/cache"
9+
"github.com/golangid/graphql-go"
10+
"github.com/golangid/graphql-go/example/caching"
11+
"github.com/golangid/graphql-go/example/caching/cache"
1212
)
1313

1414
var schema *graphql.Schema

example/customerrors/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"log"
55
"net/http"
66

7-
"github.com/agungdwiprasetyo/graphql-go"
8-
"github.com/agungdwiprasetyo/graphql-go/example/customerrors"
9-
"github.com/agungdwiprasetyo/graphql-go/relay"
7+
"github.com/golangid/graphql-go"
8+
"github.com/golangid/graphql-go/example/customerrors"
9+
"github.com/golangid/graphql-go/relay"
1010
)
1111

1212
var schema *graphql.Schema

example/customerrors/starwars.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package customerrors
33
import (
44
"fmt"
55

6-
"github.com/agungdwiprasetyo/graphql-go"
6+
"github.com/golangid/graphql-go"
77
)
88

99
var Schema = `

example/social/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"log"
55
"net/http"
66

7-
"github.com/agungdwiprasetyo/graphql-go"
8-
"github.com/agungdwiprasetyo/graphql-go/example/social"
9-
"github.com/agungdwiprasetyo/graphql-go/relay"
7+
"github.com/golangid/graphql-go"
8+
"github.com/golangid/graphql-go/example/social"
9+
"github.com/golangid/graphql-go/relay"
1010
)
1111

1212
func main() {

example/social/social.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/agungdwiprasetyo/graphql-go"
10+
"github.com/golangid/graphql-go"
1111
)
1212

1313
const Schema = `

example/starwars/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"log"
55
"net/http"
66

7-
"github.com/agungdwiprasetyo/graphql-go"
8-
"github.com/agungdwiprasetyo/graphql-go/example/starwars"
9-
"github.com/agungdwiprasetyo/graphql-go/relay"
7+
"github.com/golangid/graphql-go"
8+
"github.com/golangid/graphql-go/example/starwars"
9+
"github.com/golangid/graphql-go/relay"
1010
)
1111

1212
var schema *graphql.Schema

example/starwars/starwars.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strconv"
1010
"strings"
1111

12-
graphql "github.com/agungdwiprasetyo/graphql-go"
12+
graphql "github.com/golangid/graphql-go"
1313
)
1414

1515
var Schema = `

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/agungdwiprasetyo/graphql-go
1+
module github.com/golangid/graphql-go
22

33
require (
44
github.com/opentracing/opentracing-go v1.1.0

0 commit comments

Comments
 (0)