You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a different approach to making graphql servers in Go
6
8
@@ -11,20 +13,21 @@ Just a different approach to making graphql servers in Go
11
13
- Build on top of the [graphql spec 2021](https://spec.graphql.org/October2021/)
12
14
- No code generators
13
15
-[Only 1 dependency](go.mod)
14
-
- Easy to implement in many web servers, see the [gin](https://github.com/mjarkk/go-graphql/blob/main/examples/gin/main.go) and [fiber](https://github.com/mjarkk/go-graphql/blob/main/examples/fiber/main.go) examples
16
+
- Easy to implement in many web servers, see the [gin](https://github.com/mjarkk/yarql/blob/main/examples/gin/main.go) and [fiber](https://github.com/mjarkk/yarql/blob/main/examples/fiber/main.go) examples
See the [/examples](https://github.com/mjarkk/go-graphql/tree/main/examples) folder for more examples
23
+
See the [/examples](https://github.com/mjarkk/yarql/tree/main/examples) folder for more examples
21
24
22
25
```go
23
26
package main
24
27
25
28
import (
26
29
"log"
27
-
"github.com/mjarkk/go-graphql"
30
+
"github.com/mjarkk/yarql"
28
31
)
29
32
30
33
typePoststruct {
@@ -365,7 +368,7 @@ In your request add a form file with the field name: `form_file_field_name`
365
368
366
369
## Testing
367
370
368
-
There is a [pkg.go.dev mjarkk/go-graphql/tester](https://pkg.go.dev/github.com/mjarkk/go-graphql/tester) package available with handy tools for testing the schema
371
+
There is a [pkg.go.dev mjarkk/go-graphql/tester](https://pkg.go.dev/github.com/mjarkk/yarql/tester) package available with handy tools for testing the schema
0 commit comments