ad4m-client 0.12.0-rc2

Client library wrapping AD4M's GraphQL interface
Documentation
mutation PublishFromPerspective(
    $linkLanguage: String!,
    $meta: PerspectiveInput!,
    $perspectiveUUID: String!
) {
    neighbourhoodPublishFromPerspective(
        linkLanguage: $linkLanguage,
        meta: $meta,
        perspectiveUUID: $perspectiveUUID
    )
}

mutation JoinFromUrl($url: String!) {
    neighbourhoodJoinFromUrl(url: $url) {
        uuid
        name
        sharedUrl
        neighbourhood { 
            data {
                linkLanguage
                meta { 
                    links
                        {
                            author
                            timestamp
                            data { source, predicate, target }
                            proof { valid, invalid, signature, key }
                        }  
                } 
            }
            author
        }
    }
}