--- id: overview title: Overview --- > VERY IMPORTANT: This library is currently in an experimental stage. This means that breaking changes will happen in minor AND patch releases. Use at your own risk. If you choose to rely on this in production in an experimental stage, please lock your version to a patch-level version to avoid unexpected breakages. The `@tanstack/angular-query-experimental` package offers a 1st-class API for using TanStack Query via Angular. ## Feedback very welcome We are in the process of getting to a stable API for Angular Query. If you have any feedback, please contact us at the [TanStack Discord](https://tlinz.com/discord) server or [visit this discussion](https://github.com/TanStack/query/discussions/6293) on Github. ## Supported Angular Versions Angular Query is compatible with Angular version 17. ## Example ```typescript import { AngularQueryDevtools } from '@tanstack/angular-query-devtools-experimental' import { ChangeDetectionStrategy, Component, inject } from '@angular/core' import { HttpClient } from '@angular/common/http' import { CommonModule } from '@angular/common' import { injectQuery } from '@tanstack/angular-query-experimental' import { lastValueFrom } from 'rxjs' @Component({ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'simple-example', standalone: true, template: ` @if (query.isPending()) { Loading... } @if (query.error()) { An error has occurred: {{ query.error().message }} } @if (query.data(); as data) {
{{ data.description }}
👀 {{ data.subscribers_count }} ✨ {{ data.stargazers_count }} 🍴 {{ data.forks_count }} }