Skip to content

Commit

Permalink
Add missing ai pipelines field and remove two fields as requested by …
Browse files Browse the repository at this point in the history
…Dani (#540)

Co-authored-by: Breno <[email protected]>
  • Loading branch information
Brenosalv and Breno authored Oct 16, 2024
1 parent 20896f2 commit c6d4d98
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 34 deletions.
3 changes: 0 additions & 3 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ const strapiConfig = {
Operational_Analytics: {
populate: '*',
},
Data_Science_ML: {
populate: '*',
},
AI_Pipelines: {
populate: '*',
},
Expand Down
2 changes: 0 additions & 2 deletions shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ export interface Vendor {
slugKey: string;
useCases: {
odsReplication: HasFeature;
historicalAnalytics: string;
databaseReplication: string;
dataScienceMl: HasFeature;
dataMigration: HasFeature;
dataIntegration: HasFeature;
aiPipelines: HasFeature;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ const rows = [
key: 'databaseReplication',
},
{ label: 'Replication to ODS', key: 'odsReplication' },
{ label: 'Historical Analytics', key: 'historicalAnalytics' },
{ label: 'Op. data integration', key: 'dataIntegration' },
{ label: 'Data migration', key: 'dataMigration' },
{ label: 'Stream processing', key: 'streamProcessing' },
{ label: 'Operational Analytics', key: 'operationalAnalytics' },
{ label: 'Data science and ML', key: 'dataScienceMl' },
{ label: 'AI Pipelines', key: 'aiPipelines' },
];

const UseCases = ({ xVendor, yVendor, estuaryVendor }: ComparisonVendors) => {
Expand Down
28 changes: 1 addition & 27 deletions src/templates/etl-tools/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const EtlTools = ({
vendors: { nodes: vendors },
},
}: EtlToolsProps) => {
console.log(xVendor);
return (
<Layout>
<SectionOne vendors={vendors} xVendor={xVendor} yVendor={yVendor} />
Expand Down Expand Up @@ -78,16 +79,7 @@ export const pageQuery = graphql`
}
}
}
historicalAnalytics: Historial_Analytics
databaseReplication: Database_Replication
dataScienceMl: Data_Science_ML {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
dataMigration: Data_Migration {
icon: Icon
subText: Sub_Text {
Expand Down Expand Up @@ -323,16 +315,7 @@ export const pageQuery = graphql`
}
}
}
historicalAnalytics: Historial_Analytics
databaseReplication: Database_Replication
dataScienceMl: Data_Science_ML {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
dataMigration: Data_Migration {
icon: Icon
subText: Sub_Text {
Expand Down Expand Up @@ -568,16 +551,7 @@ export const pageQuery = graphql`
}
}
}
historicalAnalytics: Historial_Analytics
databaseReplication: Database_Replication
dataScienceMl: Data_Science_ML {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
dataMigration: Data_Migration {
icon: Icon
subText: Sub_Text {
Expand Down

0 comments on commit c6d4d98

Please sign in to comment.