> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tappify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TapQuery

> A read tap.data.query and useTapQuery accept, one member per kind of Tappify data.

```ts theme={null}
type TapQuery = 
  | {
  kind: "project";
}
  | {
  kind: "series";
  metric: TapSeriesMetric;
  platform?: TapPlatform;
  range: TapDateRange;
}
  | {
  kind: "keywords";
}
  | {
  kind: "listing";
}
  | {
  kind: "reviews";
  range: TapDateRange;
}
  | {
  kind: "crashes";
  range: TapDateRange;
}
  | {
  kind: "revenue";
  range: TapDateRange;
};
```

A read `tap.data.query` and `useTapQuery` accept, one member per kind of
Tappify data.
