├── .deepsource.toml ├── .github ├── release-drafter-config.yml └── workflows │ └── release-drafter.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client_test.go ├── edge.go ├── example_graph_test.go ├── examples └── redisgraph_tls_client │ └── redisgraph_tls_client.go ├── go.mod ├── go.sum ├── graph.go ├── node.go ├── path.go ├── query_result.go ├── record.go └── utils.go /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/release-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/.github/release-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/README.md -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/client_test.go -------------------------------------------------------------------------------- /edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/edge.go -------------------------------------------------------------------------------- /example_graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/example_graph_test.go -------------------------------------------------------------------------------- /examples/redisgraph_tls_client/redisgraph_tls_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/examples/redisgraph_tls_client/redisgraph_tls_client.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/go.sum -------------------------------------------------------------------------------- /graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/graph.go -------------------------------------------------------------------------------- /node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/node.go -------------------------------------------------------------------------------- /path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/path.go -------------------------------------------------------------------------------- /query_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/query_result.go -------------------------------------------------------------------------------- /record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/record.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-go/HEAD/utils.go --------------------------------------------------------------------------------