https://github.com/google/cayley
Raw File
Tip revision: 431ee2850fa29f8f7dfa0de6a03c07237871d504 authored by Denys Smirnov on 03 June 2018, 14:55:18 UTC
graphql: update dependency and test filter with multiple values
Tip revision: 431ee28
imports_19.go
// +build go1.9

package cayley

import (
	"github.com/cayleygraph/cayley/graph"
	"github.com/cayleygraph/cayley/graph/path"
)

type Iterator = graph.Iterator
type QuadStore = graph.QuadStore
type QuadWriter = graph.QuadWriter

type Path = path.Path

type Handle = graph.Handle
back to top