pierreabreup

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

Showing Posts 1 to 5

dylan-chong

dylan-chong

there is a import_fields function now so you can do inheritance on types. not a perfect solution but way better than not having it at all

dylan-chong

dylan-chong

actually interfaces might be more appropriate Absinthe.Type.Interface — absinthe v1.11.0

pierreabreup

pierreabreup OP

Hi @dylan-chong,
first of all, thank you to enjoin this issue :smiley: :smiley:

import_fields is intended for to keep schema.ex small, 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 inside query block in schema.ex

let me show you my case:

defmodule ContentProxyGraphql.Schema do
  use Absinthe.Schema

  import_types ContentProxyGraphql.Schema.ObjectTypes.Content
  import_types ContentProxyGraphql.Schema.ObjectTypes.Question

  query do
    import_fields :content_queries
    import_fields :question_queries
  end

  mutation do
    import_fields :content_mutations
  end
end

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

pierreabreup OP

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

alexandru-calinoiu

Not sure if you ever got around testing it, but it actually works to use import_fields

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
kpanic
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
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 Top

GenericJam
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
JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
georgeguimaraes
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews