zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

resolv.ex (1932B)


      1 # Zenflows is designed to implement the Valueflows vocabulary,
      2 # written and maintained by srfsh <info@dyne.org>.
      3 # Copyright (C) 2021-2023 Dyne.org foundation <foundation@dyne.org>.
      4 #
      5 # This program is free software: you can redistribute it and/or modify
      6 # it under the terms of the GNU Affero General Public License as published by
      7 # the Free Software Foundation, either version 3 of the License, or
      8 # (at your option) any later version.
      9 #
     10 # This program is distributed in the hope that it will be useful,
     11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 # GNU Affero General Public License for more details.
     14 #
     15 # You should have received a copy of the GNU Affero General Public License
     16 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
     17 
     18 defmodule Zenflows.VF.AgentRelationshipRole.Resolv do
     19 @moduledoc false
     20 
     21 alias Zenflows.GQL.Connection
     22 alias Zenflows.VF.{AgentRelationshipRole, AgentRelationshipRole.Domain}
     23 
     24 def agent_relationship_role(params, _) do
     25 	Domain.one(params)
     26 end
     27 
     28 def agent_relationship_roles(params, _) do
     29 	with {:ok, page} <- Connection.parse(params),
     30 			{:ok, schemas} <- Domain.all(page) do
     31 		{:ok, Connection.from_list(schemas, page)}
     32 	end
     33 end
     34 
     35 def create_agent_relationship_role(%{agent_relationship_role: params}, _) do
     36 	with {:ok, rel_role} <- Domain.create(params) do
     37 		{:ok, %{agent_relationship_role: rel_role}}
     38 	end
     39 end
     40 
     41 def update_agent_relationship_role(%{agent_relationship_role: %{id: id} = params}, _) do
     42 	with {:ok, rel_role} <- Domain.update(id, params) do
     43 		{:ok, %{agent_relationship_role: rel_role}}
     44 	end
     45 end
     46 
     47 def delete_agent_relationship_role(%{id: id}, _) do
     48 	with {:ok, _rel_role} <- Domain.delete(id) do
     49 		{:ok, true}
     50 	end
     51 end
     52 
     53 def role_behavior(%AgentRelationshipRole{} = rel_role, _, _) do
     54 	rel_role = Domain.preload(rel_role, :role_behavior)
     55 	{:ok, rel_role.role_behavior}
     56 end
     57 
     58 end