pierreabreup
I have a absinthe object type like that:
defmodule ContentProxyGraphql.Schema.ObjectTypes.Content do
use Absinthe.Schema.Notation
use Absinthe.Relay.Schema, :modern
import_types Absinthe.Type.Custom
object :content do
field :type_of, non_null(:string)
field :name, non_null(:string)
field :date_created, non_null(:datetime)
field :date_modified, non_null(:datetime)
field :identifier, non_null(:identifier)
field :publisher, :publisher
end
object :identifier do
field :type_of, non_null(:string)
field :property_id, non_null(:string)
field :value, non_null(:string)
end
object :publisher do
field :type_of, non_null(:string)
field :name, non_null(:string)
end
end
In my schema.ex, I have the query
query do
field :contents, list_of(:content) do
resolve &Resolvers.Resources.Content.list/3
end
end
Now I’m creating the mutation
mutation do
field :create_content, type: :content do
arg :typeOf, non_null(:string)
arg :name, non_null(:string)
arg :dateCreated, non_null(:datetime)
arg :dateModified, non_null(:datetime)
resolve &Resolvers.Resources.Content.create/3
end
end
In my mutation I intend to add arg :identifier and arg :publisher. According to absinthe documentation (Complex Arguments — absinthe v1.11.0) I have to create a input_object :indentifier and a input_object :publisher with their fields, which are the same of respective object :identifier and object :publisher.
Is there a way to reuse object fields inside input_object? I’m trying it to avoid code duplication, in other words, I would like to avoid
input_object :identifier do
field :type_of, non_null(:string)
field :property_id, non_null(:string)
field :value, non_null(:string)
end
@benwilson512 FYI
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dylan-chong
there is a
import_fieldsfunction now so you can do inheritance on types. not a perfect solution but way better than not having it at alldylan-chong
actually interfaces might be more appropriate Absinthe.Type.Interface — absinthe v1.11.0
pierreabreup
Hi @dylan-chong,

first of all, thank you to enjoin this issue
import_fieldsis intended for to keepschema.exsmall, avoiding to write all of your graphl queries in the same file. So, you can create many object types whit their query in different files and register them insidequeryblock inschema.exlet me show you my case:
As you can see, I have two object types in separated files (keeping code organized) and I import all of them inside my schema.ex
pierreabreup
Interface is intended to an object type guarantees that it defines the same fields and arguments that the interface does.
It is interesting to avoid developers from making mistakes on object type definition and it is useful to able to fetch different object types in the same query Schemas and Types | GraphQL
alexandru-calinoiu
Not sure if you ever got around testing it, but it actually works to use
import_fields