Skip to content

Commit 7a11c51

Browse files
committed
Add docs for query API to docs/query.md
Remove samples/query_examples.py
1 parent 0ae8e10 commit 7a11c51

3 files changed

Lines changed: 658 additions & 305 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ Lets you query, insert, and update data on a [LabKey Server](https://www.labkey.
99

1010
The following APIs can be used against a LabKey Server instance.
1111

12-
Query API - [sample code](samples/query_examples.py)
12+
Query API - [docs](docs/query.md)
1313

1414
- **delete_rows()** - Delete records in a table.
1515
- **execute_sql()** - Execute SQL (LabKey SQL dialect) through the query module.
16+
- **get_queries()** - List the queries available in a schema.
17+
- **import_rows()** - Bulk insert or merge rows into a table from a file.
1618
- **insert_rows()** - Insert rows into a table.
19+
- **save_rows()** - Insert, update, and delete rows across multiple tables in one request.
1720
- **select_rows()** - Query and get results sets.
1821
- **update_rows()** - Update rows in a table.
19-
- **move_rows()()** - Move rows in a table.
22+
- **move_rows()** - Move rows to another container.
2023
- **truncate_table()** - Delete all rows from a table.
2124

2225
Domain API - [sample code](samples/domain_example.py)

0 commit comments

Comments
 (0)