{ "version": "3", "resolvers": [ { "tableName": "post", "path": [{ "type": "literal", "key": "posts" }, { "type": "index" }], "columns": { "post id": { "path": ["id"] }, "title": { "path": ["title"] }, "publish date": { "path": ["publishDate"] }, "author id": { "path": ["author", "id"] }, "author name": { "path": ["author", "name"] } } }, { "tableName": "comment", "path": [ { "type": "**" }, { "type": "regexp", "pattern": "comments|replies", "captureName": "type" }, { "type": "index" } ], "columns": { "parent id": { "path": ["id"], "startAtAncestor": 1 }, "comment id": { "path": ["id"] }, "content": { "path": ["content"] }, "author id": { "path": ["author", "id"] }, "author name": { "path": ["author", "name"] } } } ] }