withoutGlobalScopes method

QueryBuilder<T> withoutGlobalScopes()

Implementation

QueryBuilder<T> withoutGlobalScopes() {
  removedScopes.addAll(definition?.globalScopes.keys ?? const []);
  return this;
}