Socket
Socket
Sign inDemoInstall

@apollosproject/ui-fragments

Package Overview
Dependencies
Maintainers
4
Versions
425
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apollosproject/ui-fragments - npm Package Compare versions

Comparing version 1.5.1-alpha.8 to 1.5.1-alpha.31

4

package.json
{
"name": "@apollosproject/ui-fragments",
"repository": "git://github.com/apollosproject/apollos-apps.git",
"version": "1.5.1-alpha.8+16662dc",
"version": "1.5.1-alpha.31+8af55092",
"main": "src/index.js",

@@ -46,3 +46,3 @@ "files": [

"license": "SEE LICENSE IN LICENSE.md",
"gitHead": "16662dc46defba70ae63d1bb80b73c9da3ef65bb"
"gitHead": "8af55092e3d61d66fb7423a5b5b6d6a2ece9bcb8"
}

@@ -5,2 +5,16 @@ import gql from 'graphql-tag';

fragment ContentUpNextFragment on ContentItem {
... on ProgressNode {
upNext {
id
}
}
... on ContentParentNode {
childContentItemsConnection {
edges {
node {
id
}
}
}
}
... on ContentSeriesContentItem {

@@ -7,0 +21,0 @@ id

@@ -25,2 +25,43 @@ import gql from 'graphql-tag';

export { VIDEO_NODE_FRAGMENT, CONTENT_NODE_FRAGMENT };
const FEATURES_NODE_FRAGMENT = gql`
fragment FeaturesNodeFragment on FeaturesNode {
features {
...FeaturesFragment
}
}
`;
const CARD_NODE_FRAGMENT = gql`
fragment CardNodeFragment on Card {
title
hyphenatedTitle: title(hyphenated: true)
summary
coverImage {
sources {
uri
}
}
}
`;
const THEMED_NODE_FRAGMENT = gql`
fragment ThemedNodeFragment on ThemedNode {
theme {
type
colors {
primary
secondary
screen
paper
}
}
}
`;
export {
VIDEO_NODE_FRAGMENT,
CONTENT_NODE_FRAGMENT,
FEATURES_NODE_FRAGMENT,
CARD_NODE_FRAGMENT,
THEMED_NODE_FRAGMENT,
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc