diff --git a/crates/torii/grpc/src/types/mod.rs b/crates/torii/grpc/src/types/mod.rs index 6fd20c9cca..35fe1897f7 100644 --- a/crates/torii/grpc/src/types/mod.rs +++ b/crates/torii/grpc/src/types/mod.rs @@ -105,7 +105,11 @@ pub struct Query { pub offset: u32, pub dont_include_hashed_keys: bool, pub order_by: Vec, + /// If the array is not empty, only the given models are retrieved. + /// All entities that don't have a model in the array are excluded. pub entity_models: Vec, + /// The internal updated at timestamp in seconds (unix timestamp) from which entities are + /// retrieved (inclusive). Use 0 to retrieve all entities. pub internal_updated_at: u64, }