GraphQLRelation constructor

GraphQLRelation({
  1. required String belongsTo,
  2. required String fieldName,
  3. required bool isLazy,
  4. required bool isEager,
  5. required String? propsType,
  6. required String? eagerPrefix,
})

Implementation

GraphQLRelation({
  required this.belongsTo,
  required this.fieldName,
  required this.isLazy,
  required this.isEager,
  required this.propsType,
  required this.eagerPrefix,
});