We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6722563 commit ca47b91Copy full SHA for ca47b91
1 file changed
packages/client/README.md
@@ -47,6 +47,12 @@ async function main() {
47
// 3. Metadata Access
48
const todoSchema = await client.meta.getObject('todo_task');
49
console.log('Fields:', todoSchema.fields);
50
+
51
+ // Save Metadata (New!)
52
+ await client.meta.saveItem('object', 'my_custom_object', {
53
+ label: 'My Object',
54
+ fields: { name: { type: 'text' } }
55
+ });
56
57
// 4. Advanced Query
58
const tasks = await client.data.find<{ subject: string; priority: number }>('todo_task', {
0 commit comments