gargantext-0.0.7.1.5.3: Search, map, share
Copyright(c) CNRS 2017-Present
LicenseAGPL + CECILL v3
Maintainerteam@gargantext.org
Stabilityexperimental
PortabilityPOSIX
Safe HaskellSafe-Inferred
LanguageHaskell2010

Gargantext.Core.Viz.Phylo.API

Description

 
Synopsis

Documentation

type PhyloAPI = (Summary "Phylo API" :> GetPhylo) :<|> PostPhylo #

newtype SVG #

Constructors

SVG ByteString 

data PhyloData #

This type is emitted by the backend and the frontend expects to deserialise it as a PhyloJSON. see module JSON of the 'purescript-gargantext' package.

Instances

Instances details
Arbitrary PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

FromJSON PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

ToJSON PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

Generic PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

Associated Types

type Rep PhyloData :: Type -> Type #

Show PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

Eq PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

ToSchema PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

HasSwagger (WithCustomErrorScheme GargAPI) # 
Instance details

Defined in Gargantext.API.Routes

type Rep PhyloData # 
Instance details

Defined in Gargantext.Core.Viz.Phylo.API

type Rep PhyloData = D1 ('MetaData "PhyloData" "Gargantext.Core.Viz.Phylo.API" "gargantext-0.0.7.1.5.3-inplace" 'False) (C1 ('MetaCons "PhyloData" 'PrefixI 'True) ((S1 ('MetaSel ('Just "pd_corpusId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 NodeId) :*: S1 ('MetaSel ('Just "pd_listId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 NodeId)) :*: (S1 ('MetaSel ('Just "pd_data") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 GraphData) :*: S1 ('MetaSel ('Just "pd_config") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 PhyloConfig))))

type GetPhylo = QueryParam "listId" ListId :> (QueryParam "level" Level :> (QueryParam "minSizeBranch" MinSizeBranch :> Get '[JSON] PhyloData)) #

getPhylo :: PhyloId -> GargServer GetPhylo #

TODO Add real text processing Fix Filter parameters TODO fix parameters to default config that should be in Node

Orphan instances