All Downloads are FREE. Search and download functionalities are using the official Maven repository.

configuration.basic.grateful.grateful.json Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
{
  "class": "org.unipop.rest.RestSourceProvider",
  "baseUrl": "http://localhost:9200/",
  "add":{
    "url": "/{{resource}}/{{type}}/{{id}}",
    "template": "{ {{#prop}}\"{{key}}\":\"{{value}}\"{{^-last}}, {{/-last}}{{/prop}} }",
    "commit": {
      "url":"/{{resource}}/_refresh"
    },
    "bulk":{
      "url": "/_bulk",
      "template": "resources/bulk.mustache"
    }
  },
  "search":{
    "url": "{{resource}}/_search",
    "template": "resources/search.mustache"
  },
  "delete":{
    "url" : "/{{_label}}/{{_id}}"
  },
  "resultPath": "hits.hits",
  "opTranslator": {
    "eq": "term",
    "within": "terms"
  },
  "vertices": [
    {
      "resource": "vertex",
      "id": "@_source.id",
      "label": "@_source.type",
      "properties": {
        "name": "@_source.name",
        "songType": "@_source.songtype",
        "performances": "@_source.performances"
      },
      "dynamicProperties": false
    }
  ],
  "edges": [
    {
      "resource": "edge",
      "id": "@_source.id",
      "label": "@_source.type",
      "properties": {
        "weight": "@_source.weight"
      },
      "dynamicProperties": false,
      "outVertex":{
        "ref": true,
        "id": "@_source.outid",
        "label": "@_source.outlabel"
      },
      "inVertex":{
        "ref": true,
        "id": "@_source.inid",
        "label": "@_source.inlabel"
      }
    }
  ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy