Enterprise CRM and ERP, built to adapt
AutoPath gives technical teams the building blocks for custom CRM and ERP systems that meet complex business needs and quickly adapt as the business evolves.
AutoPath
Companies
Companies
Url
Created By
Address
Account Owner
ICP
ARR
Linkedin
Industry
Main contact
Employees
Opportunities
Added

anthropic.com
18 Rue De Navarin
True
$500,000
anthropic
AI Research
612
E
Enterprise ExpansionJul 1, 2023

linkedin.com
1226 Moises Causeway
False
$1,000,000
linkedin
Professional Networking
19,300
T
Talent OutreachJul 3, 2023

slack.com
1316 Dameon Mountain
True
$2,300,000
slack
Collaboration Software
4,500
W
Workspace RenewalJul 5, 2023

notion.com
API
API - Key name1162 Sammy Creek
False
$750,000
notion
Productivity Software
620
W
Workspace ConsolidationJul 8, 2023

figma.com
WF
Workflow name110 Oswald Junction
True
$3,500,000
figma
Design Tools
1,300
AI
AI PrototypingD
Design OpsJul 12, 2023

github.com
3891 Ranchview Drive
True
$900,000
github
Developer Platform
3,800
C
Copilot RolloutJul 14, 2023

airbnb.com
4517 Washington Avenue
True
$4,200,000
airbnb
Travel
6,900
H
Host OpsJul 15, 2023

stripe.com
2118 Thornridge Circle
True
$1,800,000
stripe
Payments
7,400
B
Billing ExpansionJul 17, 2023

sequoia.com
1316 Dameon Mountain
False
$6,000,000
sequoia
Venture Capital
1,100
F
Fund OpsJul 20, 2023
segment.com
8502 Preston Rd. East
True
$2,750,000
segment
Customer Data
1,550
W
Warehouse RolloutJul 21, 2023

mailchimp.com
3517 W. Gray St.
False
$1,250,000
mailchimp
Marketing Automation
1,900
L
Lifecycle CampaignsJul 23, 2023

accel.com
4140 Parker Rd.
True
$5,800,000
accel
Venture Capital
540
P
Portfolio SyncJul 24, 2023
foundersfund.com
SYS
System2715 Ash Dr. San Jose
True
$2,100,000
foundersfund
Private Equity
734
F
FundraisingJul 25, 2023

google.com
4140 Parker Rd.
False
$7,500,000
google
Computer Software
734
G
Google AI and Data SolutionsL
Relation 2L
Relation 3Jul 1, 2023 2:25 pm
14 records
AI Chat
Scaffold a launch-ops CRM in my workspace with rockets, launches, payloads, customers, and launch sites, with relevant actions for each.
…my-twenty-app/src/constants/schema-identifiers.ts
+84-01export const SCHEMA_IDS = {
2 rocket: { object: '733956fd-…', fields: { launches: '5b877c2a-…' } },
3 launch: { object: 'e7f1e750-…', fields: { rocket: '42c9106f-…' } },
4 payload: { object: '16ffcc45-…', fields: { customer: 'd84468aa-…' } },
5 launchSite: { object: '2f18d525-…', fields: { launches: 'b94b7f00-…' } },
79 unmodified lines
…my-twenty-app/src/objects/launch.object.ts
+237-01import { defineObject, FieldType, RelationType } from 'twenty-sdk';
3export default defineObject({
4 nameSingular: 'launch',
5 labelSingular: 'Launch', labelPlural: 'Launches',
6 icon: 'IconRocket',
7 fields: [
8 { name: 'missionCode', type: FieldType.TEXT, isUnique: true },
9 { name: 'status', type: FieldType.SELECT, options: [ … ] },
10 { name: 'plannedLaunchAt', type: FieldType.DATE_TIME },
11 { name: 'rocket', type: FieldType.RELATION, relationType: RelationType.MANY_TO_ONE },
226 unmodified lines
…my-twenty-app/src/objects/payload.object.ts
+198-01import { STANDARD_OBJECT } from 'twenty-sdk';
4 { name: 'payloadType', type: FieldType.SELECT },
5 { name: 'customer', type: FieldType.RELATION,
6 relationTargetObjectMetadataUniversalIdentifier: STANDARD_OBJECT.company.universalIdentifier,
7 universalSettings: { relationType: RelationType.MANY_TO_ONE, joinColumnName: 'companyId' },
8 },
190 unmodified lines
…my-twenty-app/src/objects/rocket.object.ts
+28-32140 unmodified lines
141
141 {
142 name: 'launches',
143 type: FieldType.RELATION,
144 relationType: RelationType.ONE_TO_MANY,
145 relationTargetObjectMetadataUniversalIdentifier: SCHEMA_IDS.launch.object,
146 },
…my-twenty-app/src/views/upcoming-launches.view.ts
+82-01import { defineView, ViewFilterOperand, ViewType } from 'twenty-sdk';
3export default defineView({
4 name: 'Upcoming launches',
5 type: ViewType.TABLE,
6 filters: [
7 { fieldMetadataUniversalIdentifier: SCHEMA_IDS.launch.fields.plannedLaunchAt,
8 operand: ViewFilterOperand.IS_IN_FUTURE },
9 ],
73 unmodified lines
…my-twenty-app/src/__tests__/schema.integration-test.ts
+412-40150 unmodified lines
151 expect(application.objects).toHaveLength(1);
151 expect(application.objects).toHaveLength(4);
152 expectObject(application.objects, SCHEMA_IDS.launch.object, 'launch', 'Launch');
153 expectObject(application.objects, SCHEMA_IDS.payload.object, 'payload', 'Payload');
154 expectObject(application.objects, SCHEMA_IDS.launchSite.object, 'launchSite', 'Launch site');
155 expectRelationPair(payloadCustomerField, [payload.object, STANDARD_OBJECT.company.universalIdentifier], [...]);
325 unmodified lines