@Override
  public Iterator<DefinedProperty> graphGetAllProperties(KernelStatement state) {
    if (state.hasTxStateWithChanges()) {
      return state.txState().augmentGraphProperties(storeLayer.graphGetAllProperties());
    }

    return storeLayer.graphGetAllProperties();
  }