jeyroik / extas-operations-jsonrpc-index
此包最新版本(0.2.1)没有可用的许可信息。
JSON RPC 索引操作
0.2.1
2020-12-01 09:07 UTC
Requires
Requires (Dev)
README
extas-operations-jsonrpc-index
JSON RPC 索引操作。
规范
{
"request": {
"type": "object",
"properties": {
"select": {
"type": "array",
"items": {"type": "string"}
},
"filter": {
"type": "object",
"properties": {}
},
"sort": {
"type": "object",
"properties": {}
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
}
}
}
}
请求示例
{
"id": "2f5d0719-5b82-4280-9b3b-10f23aff226b",
"method": "snuff.index",
"params": {
"limit": 1,
"offset": 0,
"sort": {"name": -1},
"select": ["name", "value"],
"expand": ["snuff.item.description"],
"filter": {
"name": {
"~": "test"
}
}
}
}
注意 可以在 extas-expands 包的文档中学习 expand 功能。