{auth.name
{#if auth?.name}
{auth.name}
{/if}
{auth.login}
{#if auth}
followers {auth.followers} {#if auth.following}
⋅ following {auth.following}
{/if}
repositories {auth.repositories}
⋅ starred {auth.starredRepositories}
open {auth.openIssues}
⋅ closed {auth.closedIssues}
open {auth.openPRs}
⋅ merged {auth.mergedPRs}
{#if auth.bio}
bio {auth.bio}
{/if} {#if auth.blog}
blog {auth.blog}
{/if} {#if auth.company}
company {auth.company}
{/if} {#if auth.email}
email {auth.email}
{/if} {#if auth.location}
location {auth.location}
{/if}
organizations {auth.organizations?.totalCount ?? 0}
{/if}
{#each auth?.organizations?.nodes ?? [] as organization}
{#if organization.avatarUrl}
{organization.name}
{/if}
{organization.name}
{organization.description ?? ''}
{/each}
{#if auth.error} {auth.error} {/if}