Skip to content

Commit

Permalink
docs: add comments to explain fields
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Dec 16, 2024
1 parent eea50a7 commit dbc84a5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/torii/grpc/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ pub struct Query {
pub offset: u32,
pub dont_include_hashed_keys: bool,
pub order_by: Vec<OrderBy>,
/// 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<String>,
/// 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,
}

Expand Down

0 comments on commit dbc84a5

Please sign in to comment.