···8899Pinia Colada query options now use `defineQueryOptions` to improve reactivity support. Instead of calling the query options function, you can use one of the following approaches.
10101111-#### No params
1111+### No params
12121313```ts
1414useQuery(getPetsQuery);
1515```
16161717-#### Constant
1717+### Constant
18181919```ts
2020useQuery(getPetByIdQuery, () => ({
···2424}));
2525```
26262727-#### Reactive
2727+### Reactive
28282929```ts
3030const petId = ref<number | null>(1);
···3636}));
3737```
38383939-#### Properties
3939+### Properties
40404141```ts
4242const petId = ref<number | null>(1);