Skip to content

Instantly share code, notes, and snippets.

@mamund
Last active January 4, 2016 10:38
Show Gist options
  • Save mamund/8609762 to your computer and use it in GitHub Desktop.
Save mamund/8609762 to your computer and use it in GitHub Desktop.
mapping out a QBE extension for Cj
{
"collection": {
"qbe": [
{
"href": "http://example.org/Customers",
"method" : "POST",
"data": [
{"name": "fname", "prompt": "First Name:", "operators": ["Eq", "substringof"]},
{"name": "lname", "prompt": "Last Name:", "operators": ["Eq", "substringof"]},
{"name": "age", "prompt": "Age:", "operators": []},
{"name": "customerStatus", "prompt": "Status:", "operators": ["Eq"],
"options": ["pending", "under-review", "approved", "suspended"]
}
]
}
]
}
}
{
"collection": {
"qbe": [
{
"href": "http://example.org/Customers",
"data": [
{"name": "fname", "prompt": "First Name:", "operators": ["Eq", "substringof"]},
{"name": "lname", "prompt": "Last Name:", "operators": ["Eq", "substringof"]},
{"name": "age", "prompt": "Age:", "operators": []},
{"name": "customerStatus", "prompt": "Status:", "operators": ["Eq"],
"options": ["pending", "under-review", "approved", "suspended"]
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment