You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Use case: See if any records where submitted by anyone and accept them.
Approach: Loop over all inboxes, fetch all records, submit to collection via curator access.
Following this approach has one of two problems, either one requires using schema information rather than API information.
The issue is that in the end records need to be submitted to the right endpoint (type). But either I need to read the schema to infer the list of (inbox) endpoints to query from and submit to, or I need to query a generic endpoint and need to infer the type from the record.
Use case: See if any records where submitted by anyone and accept them.
Approach: Loop over all inboxes, fetch all records, submit to collection via curator access.
Following this approach has one of two problems, either one requires using schema information rather than API information.
The issue is that in the end records need to be submitted to the right endpoint (type). But either I need to read the schema to infer the list of (inbox) endpoints to query from and submit to, or I need to query a generic endpoint and need to infer the type from the record.
What is the best/desired workflow here?