Take the [example](https://juliagraphs.org/GraphNeuralNetworks.jl/docs/GraphNeuralNetworks.jl/stable/api/conv/#GraphNeuralNetworks.GATConv:~:text=GraphNeuralNetworks.GATv2Conv) in the documentation. If we replace ```Julia l = GATv2Conv((in_channel, ein) => out_channel, add_self_loops = false) ``` with ```Julia l = GNNChain(GATv2Conv((in_channel, ein) => out_channel, add_self_loops = false)) ``` then we will get a `MethodError` in the forward pass call `y = l(g, x, e)`. Versions - GraphNeuralNetworks.jl: v1.0.0