Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create UserSecretNameListQuery to align with related NerdGraph feature #76

Open
tangollama opened this issue Sep 4, 2020 · 0 comments

Comments

@tangollama
Copy link
Contributor

tangollama commented Sep 4, 2020

Create a data fetching component that wraps a NerdGraph request like the following (currently only accessible in the Product schema, but to be released in some modified form later in the year).

{
  actor {
    nerdStorageVault {
      secrets
    }
  }
}

UserSecretNameListQuery

Query Storage Vault (i.e. secrets encrypted at rest) for user scoped list of secrets.

Declarative query

//retrieve and use a stored secret
import { UserSecretNameListQuery } from '@newrelic/nr1-community';

<UserSecretNameListQuery>
  {({ loading, error, data }) => {
    if (loading) {
      return <Spinner />;
    }
    if (error) {
      return 'Error!';
    }
    const { secrets } = data;
    return (<ul>
      {data.secrets.map((secret, i) => <li key={i}>{secret}</li>)}
    </ul>);
  }}
</UserSecretNameListQuery>;

Imperative query

UserSecretNameListQuery.query().then(({ data }) => console.log(data));

Props

prop REQUIRED type description
children TRUE function Render prop function as a child.
@tangollama tangollama added the enhancement New feature or request label Sep 4, 2020
@jpvajda jpvajda added this to Feature Backlog in NR1 3rd Party Nerdpack Community Jun 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

No branches or pull requests

1 participant