From 6a4360e42527008c9fcb602f79605f8e6fa683ee Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Thu, 2 Aug 2018 17:33:08 +0200 Subject: [PATCH] Update universe [ci skip] --- website/universe/universe.json | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/website/universe/universe.json b/website/universe/universe.json index de88c9613..f1d90e5c9 100644 --- a/website/universe/universe.json +++ b/website/universe/universe.json @@ -965,6 +965,45 @@ }, "category": ["training"], "tags": ["excel"] + }, + { + "id": "spacy-graphql", + "title": "spacy-graphql", + "slogan": "Query spaCy's linguistic annotations using GraphQL", + "github": "ines/spacy-graphql", + "description": "A very simple and experimental app that lets you query spaCy's linguistic annotations using [GraphQL](https://graphql.org/). The API currently supports most token attributes, named entities, sentences and text categories (if available as `doc.cats`, i.e. if you added a text classifier to a model). The `meta` field will return the model meta data. Models are only loaded once and kept in memory.", + "url": "https://explosion.ai/demos/spacy-graphql", + "category": ["apis"], + "tags": ["graphql"], + "thumb": "https://i.imgur.com/xC7zpTO.png", + "code_example": [ + "{", + " nlp(text: \"Zuckerberg is the CEO of Facebook.\", model: \"en_core_web_sm\") {", + " meta {", + " lang", + " description", + " }", + " doc {", + " text", + " tokens {", + " text", + " pos_", + " }", + " ents {", + " text", + " label_", + " }", + " }", + " }", + "}" + ], + "code_language": "json", + "author": "Ines Montani", + "author_links": { + "twitter": "_inesmontani", + "github": "ines", + "website": "https://ines.io" + } } ], "projectCats": {