fetch abstract method

Future<List<InstanceType>> fetch()

Fetches InstanceTypes from the database.

This operation will return all InstanceTypes from the database, filtered by predicate/where. Example:

  var q = Query<User>();
  var allUsers = q.fetch();

Implementation

Future<List<InstanceType>> fetch();