brick_offline_first_with_graphql_abstract 1.0.1 copy "brick_offline_first_with_graphql_abstract: ^1.0.1" to clipboard
brick_offline_first_with_graphql_abstract: ^1.0.1 copied to clipboard

Annotations and models required by the Offline First with GraphQL domain.

example/example.dart

import 'package:brick_graphql/graphql.dart';

import 'package:brick_offline_first_with_graphql_abstract/annotations.dart';
import 'package:brick_offline_first_with_graphql_abstract/abstract.dart';

/// A child association
@ConnectOfflineFirstWithGraphql()
class Hat extends OfflineFirstWithGraphqlModel {
  final int? id;

  final String? color;

  Hat({
    this.id,
    this.color,
  });
}

/// A parent association
@ConnectOfflineFirstWithGraphql()
class Person extends OfflineFirstWithGraphqlModel {
  /// given an API response of
  /// { "hat_id" : 1}
  /// this will automatically fetch or hydrate the association based on the unique lookup of
  /// Hat.id
  @OfflineFirst(where: {'id': "data['hat_id']"})

  /// for upsert and delete, the graphql key must be defined
  @Graphql(name: 'hat_id')
  final Hat? hat;

  Person({
    this.hat,
  });
}
0
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Annotations and models required by the Offline First with GraphQL domain.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

brick_core, brick_graphql, brick_offline_first_abstract, brick_sqlite_abstract, meta

More

Packages that depend on brick_offline_first_with_graphql_abstract