Skip to content

Latest commit

 

History

History
89 lines (61 loc) · 3.12 KB

README.md

File metadata and controls

89 lines (61 loc) · 3.12 KB

Dgraph snippets for vscode.

This extension for Visual Studio Code adds snippets for Dgraph's Query lang and Mutation lang for RDF files, JSON files e other supported extensions.

e.g:

Prefixes

Installation

Launch Quick Open

Paste the following command and press Enter:

ext install MichelDiz.vscode-dgraph-snippets

Usage

Simple usage is start to write "RDF" or "dgraph" as they are kind of Prefixes.

Prefixes

Prefixes

Supported languages

  • JSON(.JSON)
  • RDF(.RDF)
  • javascript(.js)
  • typescript(.ts)

DQL Snippets

Snippet Description
DQL-brackets Create curly brackets
DQL Query base for all func
DQL_ExpandEdges Expand All and expand edges
DQL-Recurse Query base for all func

RDF Snippets

Snippet Description
RDF-D Basic estructure w/ Blank Node
RDF-D_UID Triples to update existing data
RDF-DELETE-SINGLE basic estructure for Delete
RDF-DELETE-Multiple Delete S P * in RDF
RDF-DELETE-CLEAN Clean the whole Node - S * *
RDF-GEO Basic estructure for GEO

JSON-Dgraph Snippets

Snippet Description
Dgraph-JSON-Edges-btNodes Edges between nodes
Dgraph-JSON-Add-1Edge Add one Edge with Blank node
Dgraph-JSON-Facet Add a single Facet
Dgraph-JSON-Predicate Add a single Predicate
Dgraph-JSON-Delete-Edge For delete a Edge
Dgraph-JSON-Delete-S_P_* Delete a Edge for a single pred
Dgraph-JSON-Delete-S_*_* For delete a whole Node
Dgraph-JSON-1EdgeFacet Add Edge and Facet
Dgraph-JSON-List Basic JSON list in Dgraph
Dgraph-JSON-BlanKNode Add just a Blank Node
Dgraph-JSON-MutationBase Dgraph JSON Base mutation
Dgraph-JSON-DeleteBase Dgraph JSON Base delete

Known Issues

N/A

Release Notes

0.0.1

Initial release of vscode-dgraph-snippets

0.0.2

Added language support for .schema file extension.