schema.Object
Define a plain object mapping that has values needing to be normalized into Entities. Note: The same behavior can be defined with shorthand syntax: { ... }
definition
: required A definition of the nested entities found within this object. Defaults to empty object. You do not need to define any keys in your object other than those that hold other entities. All other values will be copied to the normalized output.
tip
Objects
have statically known members. For unbounded Objects (aribtrary string
keys), use schema.Values
Instance Methods
define(definition)
: When used, thedefinition
passed in will be merged with the original definition passed to theObject
constructor. This method tends to be useful for creating circular references in schema.
Usage
const sampleData = () =>Promise.resolve({ users: [{ id: '123', name: 'Beth' }] });class User extends Entity {readonly name: string = '';pk() {return this.id;}}const userList = new Endpoint(sampleData, {schema:new schema.Object({ users: new schema.Array(User) }),,});function UsersPage() {const { users } = useSuspense(userList, {});return (<div>{users.map(user => <div key={user.pk()}>{user.name}</div>)}</div>);}render(<UsersPage />);