Writing/Reading an ItemStack to/from a ConfigurationNode

Can ItemStacks be written straight to a configuration node?

Anyone have examples on how to do this?
Anyone have examples of how the file would look once an ItemStack was written to it?

Thank you.

public ConfigurationNode toConfigurationNode(ItemStack stack) {
    return ConfigurateTranslator.instance().translateData(stack.toContainer());
}

Thank you :slight_smile: You’re the best!