String getQueryId()

return a unified String as the key of the map

Source

String getQueryId() {
  if (_cachedQueryId == null) {
    if (base != null) {
      _cachedQueryId = '$base|$this';
    } else {
      _cachedQueryId = toString();
    }
  }
  return _cachedQueryId;
}