useObject
Fetch a single object schema by ID
Fetch a single object schema by ID
(objectId: string, options?: UseObjectOptions | undefined): UseQueryResult<ObjectDefinition, Error>
```tsx
const { data: object } = useObject("obj-123");
if (object) {
console.log(object.name, object.attributes);
}