Versions in this module Expand all Collapse all v0 v0.0.5 Dec 21, 2024 v0.0.4 Oct 31, 2023 Changes in this version + type Client struct + func NewClient(endpoint, dest string, opts ...Option) (*Client, error) + func (c *Client) Export(ctx context.Context) (*ExportOutput, error) + type ExportInput struct + AccessKey graphql.String + Anonymous graphql.Boolean + Destination graphql.String + Format graphql.String + Namespace graphql.Int + SecretKey graphql.String + SessionToken graphql.String + type ExportOutput struct + ExportedFiles []graphql.String + Response struct{ ... } + func (resp *ExportOutput) GetFiles() []string + type Option func(*Client) + func WithAccessKey(value string) Option + func WithAnonymous(value bool) Option + func WithSecretKey(value string) Option