1.2.1 • Published 4 years ago

@cayleygraph/cayley v1.2.1

Weekly downloads
198
License
Apache-2.0
Repository
github
Last release
4 years ago

JavaScript Client for Cayley

Documentation

Installation

npm install @cayleygraph/cayley

Usage

Log 10 nodes from the graph

import * as cayley from "@cayleygraph/cayley";

const client = new cayley.Client();
const response = client.query(g.V().getLimit(10));
response
  .then(res => res.json())
  .then(nodes => {
    for (const node of nodes) {
      console.log(node);
    }
  });
1.2.0

4 years ago

1.1.5

4 years ago

1.2.1

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago