这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions community/tools/ra-data-hasura/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.4 (April 25, 2019)

- Feature: Support multiple schemas using "." separator.
Example: `<Resource name="schema.table" />`

## 0.0.3 (January 24, 2019)

- Bug Fix: Fix count query to support UUID
Expand Down
11 changes: 11 additions & 0 deletions community/tools/ra-data-hasura/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,17 @@ export default App;

In case the server is configured with admin secret or auth, configure the appropriate headers and pass it to the provider.

### Multiple schemas

To query schemas other than `public`, you can pass schema to resource in the format
`<Resource name="schema.table" />`.

For example to fetch data from schema `test` and table `author`, use the following snippet:

```
<Resource name="test.author" list={list} />
```

## Known Issues

Filter as you type (search) functionality inside tables is not supported right now. It is a work in progress.
Expand Down
Loading