1//! GraphQL query definitions. 2 3pub mod user; 4pub mod v1; 5pub mod v2; 6 7pub use user::{GetUserAccountOverview, GetUserVaultPositions}; 8pub use v1::{GetVaultV1ByAddress, GetVaultsV1}; 9pub use v2::{GetVaultV2ByAddress, GetVaultsV2};