コレクションの取得での使用
クエリオプションを useGetCollection
で試してみましょう。
条件などを options
として定義します。次の例ではコレクションを population
順で並べて上から 2 つを取得する、ということを表しています。
const options = {
limit: 2,
order: {
by: "population",
},
};
この options
を useGetCollection
の引数に渡すことで、options
の内容が適応されます。
[
{
data: {
country: "Brazil",
name: "São Paulo",
population: 18845000,
},
id: "SaoPaulo",
},
{
data: {
country: "India",
name: "Mumbai",
population: 18978000,
},
id: "Mumbai",
},
];
他にも where
, limit
, order
, cursor
などを options
として指定することができます。
それぞれの内容については概要を参照してください。
const options = {
where: { ... },
limit: 100,
order: { ... },
cursor: { ... }
}