Velo: Wix Bookings "Staff" Collection Fields

Tip: Before continuing, make sure you've read Working with Wix App Collections.

To use the Staff collection in code, refer to it as "Bookings/Staff".

Copy
1
wixData.query("Bookings/Staff")
2
.find()
3
.then( (results) => {
4
// handle the results
5
} );

This document describes the permissions and fields in your Staff collection.

Permissions

The Staff collection has the following permissions:

  • Read: Anyone 
  • Create: None
  • Update: None
  • Delete: None

You cannot change the Staff collection's permissions. 

Fields

Note: This app collection contains read-only fields that cannot be managed from the collection. You can update the fields from the relevant app in your site’s dashboard.

The field name is listed as the heading of each section, with the field ID listed in parentheses, like this: Name (name). The fields appear in this document in the order in which they appear in your collection by default.

Note You cannot create a dynamic page based on the Staff collection.

ID (_id)

Description: Unique staff member ID.

Type: Text

Can connect to data: Yes

Can be sorted: No

Can be filtered: No

Read-only: Yes

Staff Name (name)

Description: The staff member's name.

Type: Text

Can connect to data: Yes

Can be sorted: No

Can be filtered: No

Read-only: Yes

Staff Image (image)

Description: The staff member's image.

Type: Image

Can connect to data: Yes

Can be sorted: No

Can be filtered: No

Read-only: Yes

Was this helpful?
Yes
No