Skip to content

A Grakn REST API connector for the Grakn hyper-relational graph database.

License

Notifications You must be signed in to change notification settings

Tomen/grakn-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grakn-dart

A Grakn REST API connector for the Grakn hyper-relational graph database.

Tested with Grakn 1.0 and 1.1

Usage

A simple usage example:

import "dart:convert";
import 'package:grakn/grakn.dart';

main() async {
    Grakn grakn = new Grakn();
    String rawString = await grakn.execute("match \$x isa thing; get;");
    List rawList = JSON.decode(rawString);
    print('awesome: $rawList');
}

Features and bugs

Please file feature requests and bugs at the issue tracker.