文件名称:graphql-go-example:示例GraphQL API在Go中实现并由Postgresql支持
文件大小:13KB
文件格式:ZIP
更新时间:2024-02-25 06:38:39
graphql golang postgresql GraphQLGo
graphql-go-example 在Go中实现并由Postgresql支持的示例GraphQL API 如何运行 要运行此项目,您需要: 安装golang,请参阅 安装 ,它是golang项目的软件包管理器。 安装此项目的所有依赖项: glide install ,glide将所有依赖项存储在/vendor文件夹中。 安装postgresql(对于ubuntu,请遵循)。 对于此应用程序,我创建了一个名为vagrant的postgresql用户,使用vagrant作为密码,并创建了一个名为graphql的数据库,但是您当然可以在./migrate.sh和./main.go文件中更改
【文件预览】:
graphql-go-example-master
----.gitignore(292B)
----post.go(2KB)
----query.go(597B)
----user.go(3KB)
----post_type.go(2KB)
----LICENSE(1KB)
----schema.graphql(811B)
----comment_type.go(2KB)
----migrate.sh(126B)
----main.go(1006B)
----README.md(2KB)
----comment.go(1KB)
----mutation.go(6KB)
----migrations()
--------1483378780_create_table_comments.up.sql(252B)
--------1483378768_create_table_users.up.sql(93B)
--------1483378776_create_table_posts.down.sql(28B)
--------1483378776_create_table_posts.up.sql(182B)
--------1483383974_create_table_followers.up.sql(224B)
--------1483378768_create_table_users.down.sql(28B)
--------1483378780_create_table_comments.down.sql(31B)
--------1483383974_create_table_followers.down.sql(32B)
----glide.lock(540B)
----glide.yaml(102B)
----user_type.go(3KB)