Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Tanstack Query Angular support #1

Merged
merged 11 commits into from
Feb 20, 2025
Merged

Conversation

maneesht
Copy link
Owner

@maneesht maneesht commented Jan 21, 2025

Usage:

public dc = inject(DataConnect);
public query1 = injectDataConnectQuery(listAllMoviesRef());
public query2 = injectDataConnectQuery(() => ({
    queryFn: () => listAllMoviesRef(this.dc),
    // Notice: no `QueryKey` required.
  }));

  public addMovie = injectDataConnectMutation(() => ({
    mutationFn: (vars: AddMovieVariables) => addMovieRef(vars),
    invalidate: [listAllMoviesRef(this.dc)],
    // Notice: you can optionally provide a `Ref` of the query you want to invalidate
  }));
  
  // Generated SDK example:
  public query = injectListAllMovies();
  public mutation = injectAddMovie();

  public listAllMoviesByTitle = injectListAllMoviesByTitle({title: 'abc'});
  // OR:
  // public listAllMoviesByTitle = injectListAllMoviesByTitle(() => ({title: 'abc'});

@maneesht maneesht merged commit eaf7b23 into main Feb 20, 2025
@maneesht maneesht deleted the mtewani/tanstack-query-angular branch February 20, 2025 19:32
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant