Get schemas by provider
(provider: str, schema: str)
| 39 | response_model=list, |
| 40 | ) |
| 41 | def query_data(provider: str, schema: str): |
| 42 | """ |
| 43 | Get schemas by provider |
| 44 | """ |
| 45 | model: contract.Mixin = contract_api.get_schema_by_name(schema) |
| 46 | with contract_api.DBSession(provider=provider, data_schema=model)() as session: |
| 47 | return jsonable_encoder(model.query_data(session=session, limit=100, return_type="domain")) |
nothing calls this directly
no test coverage detected