fix: fix issues with code examples
This commit is contained in:
parent
03fe29b088
commit
bdc8c65a09
|
@ -35,12 +35,12 @@ import (
|
||||||
func main() {
|
func main() {
|
||||||
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sg, err := core.NewSuperGraph(nil, db)
|
sg, err := core.NewSuperGraph(nil, db)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
query := `
|
query := `
|
||||||
|
@ -53,7 +53,7 @@ func main() {
|
||||||
|
|
||||||
res, err := sg.GraphQL(context.Background(), query, nil)
|
res, err := sg.GraphQL(context.Background(), query, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(string(res.Data))
|
fmt.Println(string(res.Data))
|
||||||
|
|
|
@ -16,12 +16,12 @@
|
||||||
func main() {
|
func main() {
|
||||||
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sg, err := core.NewSuperGraph(nil, db)
|
sg, err := core.NewSuperGraph(nil, db)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
query := `
|
query := `
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
res, err := sg.GraphQL(context.Background(), query, nil)
|
res, err := sg.GraphQL(context.Background(), query, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(string(res.Data))
|
fmt.Println(string(res.Data))
|
||||||
|
|
|
@ -145,12 +145,12 @@ import (
|
||||||
func main() {
|
func main() {
|
||||||
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
db, err := sql.Open("pgx", "postgres://postgrs:@localhost:5432/example_db")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
sg, err = core.NewSuperGraph(nil, db)
|
sg, err := core.NewSuperGraph(nil, db)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
graphqlQuery := `
|
graphqlQuery := `
|
||||||
|
@ -163,7 +163,7 @@ func main() {
|
||||||
|
|
||||||
res, err := sg.GraphQL(context.Background(), graphqlQuery, nil)
|
res, err := sg.GraphQL(context.Background(), graphqlQuery, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(string(res.Data))
|
fmt.Println(string(res.Data))
|
||||||
|
|
Loading…
Reference in New Issue